Skip to content

Commit d3e8b00

Browse files
authored
Merge pull request #4803 from Rageking8/fix-excess-closing-square-bracket-typo
Fix excess closing square bracket typo
2 parents 756a521 + 026efdf commit d3e8b00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/c-runtime-library/reference/atoi-atoi-l-wtoi-wtoi-l.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ These functions convert a character string to an integer value (**`atoi`** and *
5353

5454
The *`str`* argument to **`atoi`** and **`_wtoi`** has the following form:
5555

56-
> [*`whitespace`*] [*`sign`*] [*`digits`*]]
56+
> [*`whitespace`*] [*`sign`*] [*`digits`*]
5757
5858
A *`whitespace`* consists of space or tab characters, which are ignored; *`sign`* is either plus (+) or minus (-); and *`digits`* are one or more digits.
5959

docs/c-runtime-library/reference/atol-atol-l-wtol-wtol-l.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The input string is a sequence of characters that can be interpreted as a numeri
5454

5555
The *`str`* argument to **`atol`** has the following form:
5656

57-
> [*`whitespace`*] [*`sign`*] [*`digits`*]]
57+
> [*`whitespace`*] [*`sign`*] [*`digits`*]
5858
5959
A *`whitespace`* consists of space or tab characters, which are ignored; *`sign`* is either plus (`+`) or minus (`-`); and *`digits`* are one or more digits.
6060

0 commit comments

Comments
 (0)