Skip to content

Commit 9d08324

Browse files
abegomezmairaw
authored andcommitted
Fixed typo in description "then" to "the" (#4858)
1 parent 46b0450 commit 9d08324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard/using-linq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ var cats = dogs.Select(dog => dog.TurnIntoACat());
139139
var queryCats = from dog in dogs
140140
select dog.TurnIntoACat();
141141

142-
// Summing then lengths of a set of strings
142+
// Summing the lengths of a set of strings
143143
int seed = 0;
144144
int sumOfStrings = strings.Aggregate(seed, (s1, s2) => s1.Length + s2.Length);
145145
```

0 commit comments

Comments
 (0)