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 d1fee78 commit 867c759Copy full SHA for 867c759
source/fundamentals/linq.txt
@@ -278,7 +278,7 @@ rest of the array:
278
var query = queryableCollection
279
.Select(s => s.Grades.TakeWhile(g => g > 90).ToArray());
280
281
-The results might resemble the following documents:
+The results might resemble the following arrays:
282
283
.. code-block:: json
284
:copyable: false
@@ -369,7 +369,7 @@ rest of the array:
369
370
.Select(s => s.Grades.SkipWhile(g => g < 75).ToArray());
371
372
373
374
375
0 commit comments