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 46b0450 commit 9d08324Copy full SHA for 9d08324
docs/standard/using-linq.md
@@ -139,7 +139,7 @@ var cats = dogs.Select(dog => dog.TurnIntoACat());
139
var queryCats = from dog in dogs
140
select dog.TurnIntoACat();
141
142
-// Summing then lengths of a set of strings
+// Summing the lengths of a set of strings
143
int seed = 0;
144
int sumOfStrings = strings.Aggregate(seed, (s1, s2) => s1.Length + s2.Length);
145
```
0 commit comments