diff --git a/LINQ/docs/lazy-evaluation.md b/LINQ/docs/lazy-evaluation.md index 6a4e7cd..632ba62 100644 --- a/LINQ/docs/lazy-evaluation.md +++ b/LINQ/docs/lazy-evaluation.md @@ -45,7 +45,7 @@ var oddNumbers = from p in numbers where p % 2 == 1 select p; var squares = from s in oddNumbers - select n * n; + select s * s; ``` - Add loops to display the output of each of those separate queries.