Skip to content

Commit 867c759

Browse files
committed
RStam tech review 2
1 parent d1fee78 commit 867c759

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/fundamentals/linq.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ rest of the array:
278278
var query = queryableCollection
279279
.Select(s => s.Grades.TakeWhile(g => g > 90).ToArray());
280280

281-
The results might resemble the following documents:
281+
The results might resemble the following arrays:
282282

283283
.. code-block:: json
284284
:copyable: false
@@ -369,7 +369,7 @@ rest of the array:
369369
var query = queryableCollection
370370
.Select(s => s.Grades.SkipWhile(g => g < 75).ToArray());
371371

372-
The results might resemble the following documents:
372+
The results might resemble the following arrays:
373373

374374
.. code-block:: json
375375
:copyable: false

0 commit comments

Comments
 (0)