@@ -437,25 +437,25 @@ module AsyncSeq =
437437 /// Flattens an AsyncSeq of asynchronous sequences.
438438 val concat : AsyncSeq < AsyncSeq < 'T >> -> AsyncSeq < 'T >
439439
440- /// Yields an AsyncSeq ordered by keys.
440+ /// Yields a sequence ordered by keys.
441441 /// This function returns a sequence that digests the whole initial sequence as soon as
442442 /// that sequence is iterated. As a result this function should not be used with
443443 /// large or infinite sequences.
444444 val sort : source : AsyncSeq < 'T > -> seq < 'T > when 'T : comparison
445445
446- /// Applies a key - generating function to each element of an AsyncSeq and yield an AsyncSeq ordered by keys.
446+ /// Applies a key - generating function to each element of an AsyncSeq and yield a sequence ordered by keys.
447447 /// This function returns a sequence that digests the whole initial sequence as soon as
448448 /// that sequence is iterated. As a result this function should not be used with
449449 /// large or infinite sequences.
450450 val sortBy : projection :( 'T -> 'Key ) -> source : AsyncSeq < 'T > -> seq < 'T > when 'Key : comparison
451451
452- /// Yields a AsyncSeq ordered descending by keys.
452+ /// Yields a sequence ordered descending by keys.
453453 /// This function returns a sequence that digests the whole initial sequence as soon as
454454 /// that sequence is iterated. As a result this function should not be used with
455455 /// large or infinite sequences.
456456 val sortDescending : source : AsyncSeq < 'T > -> seq < 'T > when 'T : comparison
457457
458- /// Applies a key - generating function to each element of an AsyncSeq and yield an AsyncSeq ordered descending by keys.
458+ /// Applies a key - generating function to each element of an AsyncSeq and yield a sequence ordered descending by keys.
459459 /// This function returns a sequence that digests the whole initial sequence as soon as
460460 /// that sequence is iterated. As a result this function should not be used with
461461 /// large or infinite sequences.
0 commit comments