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 579f8f0 commit 5b05fb2Copy full SHA for 5b05fb2
docs/csharp/expression-trees-interpreting.md
@@ -65,7 +65,7 @@ Expression<Func<int>> sum = () => 1 + 2;
65
> because the right-hand side of the assignment is implicitly typed. To understand
66
> this more deeply, read [here](implicitly-typed-lambda-expressions.md).
67
68
-The root node is a `LambaExpression`. In order to get the interesting
+The root node is a `LambdaExpression`. In order to get the interesting
69
code on the right hand side of the `=>` operator, you need to find one
70
of the children of the `LambdaExpression`. We'll do that with all the
71
expressions in this section. The parent node does help us find the return
0 commit comments