Skip to content

Commit 5b05fb2

Browse files
nemanBillWagner
authored andcommitted
Spelling error (#1234)
1 parent 579f8f0 commit 5b05fb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/expression-trees-interpreting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Expression<Func<int>> sum = () => 1 + 2;
6565
> because the right-hand side of the assignment is implicitly typed. To understand
6666
> this more deeply, read [here](implicitly-typed-lambda-expressions.md).
6767
68-
The root node is a `LambaExpression`. In order to get the interesting
68+
The root node is a `LambdaExpression`. In order to get the interesting
6969
code on the right hand side of the `=>` operator, you need to find one
7070
of the children of the `LambdaExpression`. We'll do that with all the
7171
expressions in this section. The parent node does help us find the return

0 commit comments

Comments
 (0)