From 0b7b5375f715629236bd10b1ce3372c3f979abeb Mon Sep 17 00:00:00 2001 From: Ruben Bartelink Date: Sat, 23 Dec 2023 17:39:11 +0000 Subject: [PATCH] More cref -> paramref --- src/FSharp.Control.TaskSeq/TaskSeq.fsi | 6 +++--- src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/FSharp.Control.TaskSeq/TaskSeq.fsi b/src/FSharp.Control.TaskSeq/TaskSeq.fsi index 8f6992a6..c3b86aa2 100644 --- a/src/FSharp.Control.TaskSeq/TaskSeq.fsi +++ b/src/FSharp.Control.TaskSeq/TaskSeq.fsi @@ -1085,7 +1085,7 @@ type TaskSeq = /// /// The value to locate in the input sequence. /// The input task sequence. - /// if the input sequence contains the specified element; otherwise. + /// if the input sequence contains the specified element; otherwise. /// Thrown when the input task sequence is null. static member contains<'T when 'T: equality> : value: 'T -> source: TaskSeq<'T> -> Task @@ -1098,7 +1098,7 @@ type TaskSeq = /// /// A function to test each item of the input sequence. /// The input task sequence. - /// if any result from the predicate is true; otherwise. + /// if any result from the predicate is true; otherwise. /// Thrown when the input task sequence is null. static member exists: predicate: ('T -> bool) -> source: TaskSeq<'T> -> Task @@ -1111,7 +1111,7 @@ type TaskSeq = /// /// A function to test each item of the input sequence. /// The input task sequence. - /// if any result from the predicate is true; otherwise. + /// if any result from the predicate is true; otherwise. /// Thrown when the input task sequence is null. static member existsAsync: predicate: ('T -> #Task) -> source: TaskSeq<'T> -> Task diff --git a/src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi b/src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi index 8c18ca5c..8665186e 100644 --- a/src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi +++ b/src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi @@ -25,7 +25,7 @@ module Internal = val inline raiseNotImpl: unit -> 'a /// -/// Represents a and is the output of using the +/// Represents a and is the output of using the /// computation expression from this library. It is an alias for . /// The type is deprecated since version 0.4.0, /// please use in its stead. See . @@ -34,7 +34,7 @@ module Internal = type taskSeq<'T> = IAsyncEnumerable<'T> /// -/// Represents a and is the output of using the +/// Represents a and is the output of using the /// computation expression from this library. It is an alias for . /// type TaskSeq<'T> = IAsyncEnumerable<'T>