Skip to content

Commit 29b04e4

Browse files
Emphasize on the snippets being equivalent
Co-authored-by: Tomas Grosup <[email protected]>
1 parent 06ebe87 commit 29b04e4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/fsharp/language-reference/functions/lambda-expressions-the-fun-keyword.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ or using the _.Property shorthand notation:
1919
_.
2020
```
2121

22-
where `fun`, *parameter-list* and lambda arrow (`->`) is omitted and the `_.` is a part of *expression* where `_` replaces the parameter call.
22+
where `fun`, *parameter-list* and lambda arrow (`->`) is omitted and the `_.` is a part of *expression* where `_` replaces the parameter symbol.
23+
24+
The following snippets are equivalent:
25+
`(fun x -> x.Property)`
26+
`_.Property`
27+
2328

2429
## Remarks
2530

0 commit comments

Comments
 (0)