Skip to content

Commit bc10684

Browse files
authored
fix exponential notation (#3635)
1 parent d486aaf commit bc10684

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

xml/System/Double.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3232,7 +3232,7 @@ If a separator is encountered in the `s` parameter during a parse operation, and
32323232
32333233
The return value can be <xref:System.Globalization.NumberFormatInfo.PositiveInfinitySymbol%2A>, <xref:System.Globalization.NumberFormatInfo.NegativeInfinitySymbol%2A>, <xref:System.Globalization.NumberFormatInfo.NaNSymbol%2A>, or a string of the form:
32343234
3235-
[sign]integral-digits[.[fractional-digits]][e[sign]exponential-digits]
3235+
[sign]integral-digits[.[fractional-digits]][E[sign]exponential-digits]
32363236
32373237
Optional elements are framed in square brackets ([ and ]). Elements that contain the term "digits" consist of a series of numeric characters ranging from 0 to 9. The elements listed in the following table are supported.
32383238
@@ -3242,10 +3242,10 @@ If a separator is encountered in the `s` parameter during a parse operation, and
32423242
|*integral-digits*|A series of digits specifying the integral part of the number. Integral-digits can be absent if there are fractional-digits.|
32433243
|'*.*'|A culture-specific decimal point symbol.|
32443244
|*fractional-digits*|A series of digits specifying the fractional part of the number.|
3245-
|'*e*'|A lowercase character 'e', indicating exponential (scientific) notation.|
3245+
|'*E*'|An uppercase character 'E', indicating exponential (scientific) notation.|
32463246
|*exponential-digits*|A series of digits specifying an exponent.|
32473247
3248-
Some examples of the return value are "100", "-123,456,789", "123.45e+6", "500", "3.1416", "600", "-0.123", and "-Infinity".
3248+
Some examples of the return value are "100", "-123,456,789", "123.45E+6", "500", "3.1416", "600", "-0.123", and "-Infinity".
32493249
32503250
The .NET Framework provides extensive formatting support, which is described in greater detail in the following formatting topics:
32513251
@@ -3337,7 +3337,7 @@ If a separator is encountered in the `s` parameter during a parse operation, and
33373337
33383338
The return value can be <xref:System.Globalization.NumberFormatInfo.PositiveInfinitySymbol%2A>, <xref:System.Globalization.NumberFormatInfo.NegativeInfinitySymbol%2A>, <xref:System.Globalization.NumberFormatInfo.NaNSymbol%2A>, or a string of the form:
33393339
3340-
[sign]integral-digits[.[fractional-digits]][e[sign]exponential-digits]
3340+
[sign]integral-digits[.[fractional-digits]][E[sign]exponential-digits]
33413341
33423342
Optional elements are framed in square brackets ([ and ]). Elements that contain the term "digits" consist of a series of numeric characters ranging from 0 to 9. The elements listed in the following table are supported.
33433343
@@ -3347,10 +3347,10 @@ If a separator is encountered in the `s` parameter during a parse operation, and
33473347
|*integral-digits*|A series of digits specifying the integral part of the number. Integral-digits can be absent if there are fractional-digits.|
33483348
|'*.*'|A culture-specific decimal point symbol.|
33493349
|*fractional-digits*|A series of digits specifying the fractional part of the number.|
3350-
|'*e*'|A lowercase character 'e', indicating exponential (scientific) notation.|
3350+
|'*E*'|An uppercase character 'E', indicating exponential (scientific) notation.|
33513351
|*exponential-digits*|A series of digits specifying an exponent.|
33523352
3353-
Some examples of the return value are "100", "-123,456,789", "123.45e+6", "500", "3.1416", "600", "-0.123", and "-Infinity".
3353+
Some examples of the return value are "100", "-123,456,789", "123.45E+6", "500", "3.1416", "600", "-0.123", and "-Infinity".
33543354
33553355
This instance is formatted with the general numeric format specifier ("G").
33563356

0 commit comments

Comments
 (0)