Skip to content

Commit 8df533a

Browse files
authored
Update docs/fsharp/language-reference/functions/lambda-expressions-the-fun-keyword.md
1 parent 8f45cda commit 8df533a

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
@@ -54,7 +54,7 @@ The *expression* is the body of the function, the last expression of which gener
5454

5555
## Using Lambda Expressions
5656

57-
Lambda expressions are especially useful when you want to perform operations on a list or other collection and want to avoid the extra work of defining a function. Many F# library functions take function values as arguments, and it can be especially convenient to use a lambda expression in those cases. The following code applies a lambda expression to elements of a list. In this case, the anonymous function checks if an element is a text ending with specified characters.
57+
Lambda expressions are especially useful when you want to perform operations on a list or other collection and want to avoid the extra work of defining a function. Many F# library functions take function values as arguments, and it can be especially convenient to use a lambda expression in those cases. The following code applies a lambda expression to elements of a list. In this case, the anonymous function checks if an element is text that ends with specified characters.
5858

5959
[!code-fsharp[Main](~/samples/snippets/fsharp/lang-ref-1/snippet302.fs)]
6060

0 commit comments

Comments
 (0)