Skip to content

Commit

Permalink
Spelling error (#1234)
Browse files Browse the repository at this point in the history
  • Loading branch information
neman authored and BillWagner committed Nov 15, 2016
1 parent 579f8f0 commit 5b05fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/csharp/expression-trees-interpreting.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Expression<Func<int>> sum = () => 1 + 2;
> because the right-hand side of the assignment is implicitly typed. To understand
> this more deeply, read [here](implicitly-typed-lambda-expressions.md).
The root node is a `LambaExpression`. In order to get the interesting
The root node is a `LambdaExpression`. In order to get the interesting
code on the right hand side of the `=>` operator, you need to find one
of the children of the `LambdaExpression`. We'll do that with all the
expressions in this section. The parent node does help us find the return
Expand Down

0 comments on commit 5b05fb2

Please sign in to comment.