Skip to content

Commit de5c5b3

Browse files
committed
Fixing a minor typo in strtod documentation.
The error was pointed in a [tweet](https://twitter.com/lemire/status/1303423235585908738?s=20).
1 parent 8850f24 commit de5c5b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/c-runtime-library/reference/strtod-strtod-l-wcstod-wcstod-l.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ By default, this function's global state is scoped to the application. To change
7272
|**_tcstod**|**strtod**|**strtod**|**wcstod**|
7373
|**_tcstod_l**|**_strtod_l**|**_strtod_l**|**_wcstod_l**|
7474

75-
The **LC_NUMERIC** category setting of the current locale determines recognition of the radix point character in *strSource*. For more information, see [setlocale](setlocale-wsetlocale.md). The functions without the **_l** suffix use the current locale; **_strtod_l** is identical to **_strtod_l** except they use the *locale* passed in instead. For more information, see [Locale](../../c-runtime-library/locale.md).
75+
The **LC_NUMERIC** category setting of the current locale determines recognition of the radix point character in *strSource*. For more information, see [setlocale](setlocale-wsetlocale.md). The functions without the **_l** suffix use the current locale; **_strtod_l** is identical to **_strtod** except the former uses the *locale* passed in instead. For more information, see [Locale](../../c-runtime-library/locale.md).
7676

7777
If *endptr* isn't **NULL**, a pointer to the character that stopped the scan is stored at the location pointed to by *endptr*. If no conversion can be performed (no valid digits were found or an invalid base was specified), the value of *strSource* is stored at the location pointed to by *endptr*.
7878

0 commit comments

Comments
 (0)