From 5cb8ea8a14bf3ca241aacbb5a1edc7c58fc47bd5 Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Fri, 22 Dec 2023 01:20:29 +0100 Subject: [PATCH] Better wording for `takeWhile`-like functions --- src/FSharp.Control.TaskSeq/TaskSeq.fsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FSharp.Control.TaskSeq/TaskSeq.fsi b/src/FSharp.Control.TaskSeq/TaskSeq.fsi index c34895d2..de8b8120 100644 --- a/src/FSharp.Control.TaskSeq/TaskSeq.fsi +++ b/src/FSharp.Control.TaskSeq/TaskSeq.fsi @@ -818,7 +818,7 @@ type TaskSeq = /// /// Returns a task sequence that, when iterated, yields elements of the underlying sequence while the /// given function returns , and then returns no further elements. - /// The first element where the predicate returns is not included in the resulting sequence + /// Stops consuming the source and yielding items as soon as the predicate returns false. /// (see also ). /// If is asynchronous, consider using . /// @@ -832,7 +832,7 @@ type TaskSeq = /// /// Returns a task sequence that, when iterated, yields elements of the underlying sequence while the /// given asynchronous function returns , and then returns no further elements. - /// The first element where the predicate returns is not included in the resulting sequence + /// Stops consuming the source and yielding items as soon as the predicate returns false. /// (see also ). /// If is synchronous, consider using . ///