Skip to content

Commit

Permalink
Better wording for takeWhile-like functions
Browse files Browse the repository at this point in the history
  • Loading branch information
abelbraaksma committed Dec 22, 2023
1 parent 06bc268 commit 5cb8ea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FSharp.Control.TaskSeq/TaskSeq.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ type TaskSeq =
/// <summary>
/// Returns a task sequence that, when iterated, yields elements of the underlying sequence while the
/// given function <paramref name="predicate" /> returns <see cref="true" />, and then returns no further elements.
/// The first element where the predicate returns <see cref="false" /> is not included in the resulting sequence
/// Stops consuming the source and yielding items as soon as the predicate returns <c>false</c>.
/// (see also <see cref="TaskSeq.takeWhileInclusive" />).
/// If <paramref name="predicate" /> is asynchronous, consider using <see cref="TaskSeq.takeWhileAsync" />.
/// </summary>
Expand All @@ -832,7 +832,7 @@ type TaskSeq =
/// <summary>
/// Returns a task sequence that, when iterated, yields elements of the underlying sequence while the
/// given asynchronous function <paramref name="predicate" /> returns <see cref="true" />, and then returns no further elements.
/// The first element where the predicate returns <see cref="false" /> is not included in the resulting sequence
/// Stops consuming the source and yielding items as soon as the predicate returns <c>false</c>.
/// (see also <see cref="TaskSeq.takeWhileInclusiveAsync" />).
/// If <paramref name="predicate" /> is synchronous, consider using <see cref="TaskSeq.takeWhile" />.
/// </summary>
Expand Down

0 comments on commit 5cb8ea8

Please sign in to comment.