We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39bbc19 commit e17b19eCopy full SHA for e17b19e
docs/fsharp/language-reference/nullable-value-types.md
@@ -108,10 +108,10 @@ You can also use an appropriate non-nullable operator to convert to a primitive
108
open System
109
open FSharp.Linq
110
111
-let nullableInt = Nullable 10
112
-let nullableFloat = Nullable.float nullableInt
+let nullableFloat = Nullable 10.0
+let standardFloat = float nullableFloat
113
114
-printfn $"value is %f{float nullableFloat}"
+printfn $"value is %f{float standardFloat}"
115
```
116
117
You can also use nullable operators as a short-hand for checking `HasValue` and `Value`:
0 commit comments