Skip to content

Commit ff51edf

Browse files
authored
Merge pull request MicrosoftDocs#2445 from kapilash/minor-typo
Fixing a minor typo in `strtod` documentation.
2 parents 8850f24 + de5c5b3 commit ff51edf

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)