From e8986076a31f40846f06b782ee4b291fa36b0c9c Mon Sep 17 00:00:00 2001 From: Alex Logvin Date: Sat, 24 Aug 2024 21:14:19 +0200 Subject: [PATCH] Correction of the suggested code change In the suggestion of the code change there is a issue with variable naming (probably was just a TYPO) --- LINQ/docs/lazy-evaluation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.