Skip to content

Commit f3d2e32

Browse files
Tyler WhitneyTyler Whitney
authored andcommitted
fix metadata - couple acrolinx fixes
1 parent 4c27e51 commit f3d2e32

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "strtod, _strtod_l, wcstod, _wcstod_l"
3-
description: ""API reference for strtod, _strtod_l, wcstod, _wcstod_l, which convert strings to a double-precision value."
3+
description: "API reference for strtod, _strtod_l, wcstod, _wcstod_l, which convert strings to a double-precision value."
44
ms.date: "08/27/2020"
55
api_name: ["wcstod", "_wcstod_l", "_strtod_l", "strtod", "_o__strtod_l", "_o__wcstod_l", "_o_strtod", "_o_wcstod"]
66
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-convert-l1-1-0.dll", "api-ms-win-crt-private-l1-1-0.dll"]
@@ -50,7 +50,7 @@ The locale to use.
5050

5151
## Return Value
5252

53-
**strtod** returns the value of the floating-point number, except when the representation would cause an overflow, in which case the function returns +/-**HUGE_VAL**. The sign of **HUGE_VAL** matches the sign of the value that cannot be represented. **strtod** returns `0` if no conversion can be performed or an underflow occurs.
53+
**strtod** returns the value of the floating-point number, except when the representation would cause an overflow, in which case the function returns +/-**HUGE_VAL**. The sign of **HUGE_VAL** matches the sign of the value that can't be represented. **strtod** returns `0` if no conversion can be performed or an underflow occurs.
5454

5555
**wcstod** returns values analogously to **strtod**:
5656

@@ -61,7 +61,7 @@ For more information on this and other return codes, see [_doserrno, errno, _sys
6161

6262
## Remarks
6363

64-
Each function converts the input string *strSource* to a **`double`**. The **strtod** function converts *strSource* to a double-precision value. **strtod** stops reading the string *strSource* at the first character it cannot recognize as part of a number. This character may be the terminating null character. **wcstod** is a wide-character version of **strtod**; its *strSource* argument is a wide-character string. These functions behave identically otherwise.
64+
Each function converts the input string *strSource* to a **`double`**. The **strtod** function converts *strSource* to a double-precision value. **strtod** stops reading the string *strSource* at the first character it can't recognize as part of a number. This character may be the terminating null character. **wcstod** is a wide-character version of **strtod**; its *strSource* argument is a wide-character string. These functions behave identically otherwise.
6565

6666
By default, this function's global state is scoped to the application. To change this, see [Global state in the CRT](../global-state.md).
6767

0 commit comments

Comments
 (0)