Skip to content

Commit ada7506

Browse files
Update lambda-expressions-the-fun-keyword.md
Co-authored-by: Genevieve Warren <[email protected]>
1 parent 29b04e4 commit ada7506

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ _.
2222
where `fun`, *parameter-list* and lambda arrow (`->`) is omitted and the `_.` is a part of *expression* where `_` replaces the parameter symbol.
2323

2424
The following snippets are equivalent:
25+
2526
`(fun x -> x.Property)`
2627
`_.Property`
2728

28-
2929
## Remarks
3030

3131
The *parameter-list* typically consists of names and, optionally, types of parameters. More generally, the *parameter-list* can be composed of any F# patterns. For a full list of possible patterns, see [Pattern Matching](../pattern-matching.md). Lists of valid parameters include the following examples.

0 commit comments

Comments
 (0)