Skip to content

Commit 273f707

Browse files
pkulikovRon Petrusha
authored andcommitted
Typo fix (#6144)
1 parent f4a2b6e commit 273f707

File tree

1 file changed

+2
-2
lines changed
  • docs/csharp/language-reference/keywords

1 file changed

+2
-2
lines changed

docs/csharp/language-reference/keywords/float.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ms.assetid: 1e77db7b-dedb-48b7-8dd1-b055e96a9258
1212
# float (C# Reference)
1313
The `float` keyword signifies a simple type that stores 32-bit floating-point values. The following table shows the precision and approximate range for the `float` type.
1414

15-
|Type|Approximate range|Precision|.NET Framework type|
15+
|Type|Approximate range|Precision|.NET type|
1616
|----------|-----------------------|---------------|-------------------------|
17-
|`float`|-3.4 × 10<sup>38</sup>to +3.4 × 10<sup>38</sup>|7 digits|<xref:System.Single?displayProperty=nameWithType>|
17+
|`float`|-3.4 × 10<sup>38</sup> to +3.4 × 10<sup>38</sup>|7 digits|<xref:System.Single?displayProperty=nameWithType>|
1818

1919
## Literals
2020
By default, a real numeric literal on the right side of the assignment operator is treated as [double](double.md). Therefore, to initialize a float variable, use the suffix `f` or `F`, as in the following example:

0 commit comments

Comments
 (0)