From 3369227509eb93cb1b9b85e166e91af841ce92ea Mon Sep 17 00:00:00 2001 From: Bernd Baumanns Date: Mon, 8 Nov 2021 19:57:20 +0100 Subject: [PATCH] Fix linq (#5390) * missing curly brace --- spec/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/expressions.md b/spec/expressions.md index 6314184..f7817aa 100644 --- a/spec/expressions.md +++ b/spec/expressions.md @@ -4392,7 +4392,7 @@ GroupJoin(orders, c => c.CustomerID, o => o.CustomerID, (c, co) => new { c, co }). Select(x => new { x, n = x.co.Count() }). Where(y => y.n >= 10). -Select(y => new { y.x.c.Name, OrderCount = y.n) +Select(y => new { y.x.c.Name, OrderCount = y.n }) ``` where `x` and `y` are compiler generated identifiers that are otherwise invisible and inaccessible.