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 c8add7d commit 5d75492Copy full SHA for 5d75492
docs/fsharp/language-reference/pattern-matching.md
@@ -289,7 +289,7 @@ let len (str: string | null) =
289
Similarly, you can use new dedicated nullability related [patterns](./active-patterns.md):
290
291
```fsharp
292
-let let str = // str is inferred to be `string | null`
+let len str = // str is inferred to be `string | null`
293
match str with
294
| Null -> -1
295
| NonNull (s: string) -> s.Length
0 commit comments