From 7efc8fe096a493b98852d550d8662d371f45001c Mon Sep 17 00:00:00 2001 From: Ruben Bartelink Date: Sat, 23 Dec 2023 16:20:29 +0000 Subject: [PATCH] typeparamref -> paramref VS doesnt render the former --- src/FSharp.Control.TaskSeq/TaskSeq.fsi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/FSharp.Control.TaskSeq/TaskSeq.fsi b/src/FSharp.Control.TaskSeq/TaskSeq.fsi index af3aea6c..5bed7646 100644 --- a/src/FSharp.Control.TaskSeq/TaskSeq.fsi +++ b/src/FSharp.Control.TaskSeq/TaskSeq.fsi @@ -684,7 +684,7 @@ type TaskSeq = /// If is asynchronous, consider using . /// /// - /// A function to transform items of type into options of type . + /// A function to transform items of type into options of type . /// The input task sequence. /// The resulting task sequence. /// Thrown when the input task sequence is null. @@ -697,7 +697,7 @@ type TaskSeq = /// If is synchronous, consider using . /// /// - /// An asynchronous function to transform items of type into options of type . + /// An asynchronous function to transform items of type into options of type . /// The input task sequence. /// The resulting task sequence. /// Thrown when the input task sequence is null. @@ -934,7 +934,7 @@ type TaskSeq = /// the function returns . /// If is asynchronous, consider using . /// - /// A function to transform items of type into options of type . + /// A function to transform items of type into options of type . /// The input task sequence. /// The chosen element or . /// Thrown when the input task sequence is null. @@ -945,7 +945,7 @@ type TaskSeq = /// the function returns . /// If is synchronous, consider using . /// - /// An asynchronous function to transform items of type into options of type . + /// An asynchronous function to transform items of type into options of type . /// The input task sequence. /// The chosen element or . /// Thrown when the input task sequence is null. @@ -1005,7 +1005,7 @@ type TaskSeq = /// If is asynchronous, consider using . /// /// - /// A function to transform items of type into options of type . + /// A function to transform items of type into options of type . /// The input sequence. /// The selected element. /// Thrown when the input task sequence is null. @@ -1018,7 +1018,7 @@ type TaskSeq = /// If is synchronous, consider using . /// /// - /// An asynchronous function to transform items of type into options of type . + /// An asynchronous function to transform items of type into options of type . /// The input sequence. /// The selected element. /// Thrown when the input task sequence is null. @@ -1165,7 +1165,7 @@ type TaskSeq = /// /// Applies the function to each element in the task sequence, threading an accumulator - /// argument of type through the computation. If the input function is f and the elements are i0...iN + /// argument of type through the computation. If the input function is f and the elements are i0...iN /// then computes f (... (f s i0)...) iN. /// If the accumulator function is asynchronous, consider using . /// @@ -1179,7 +1179,7 @@ type TaskSeq = /// /// Applies the asynchronous function to each element in the task sequence, threading an accumulator - /// argument of type through the computation. If the input function is f and the elements are i0...iN + /// argument of type through the computation. If the input function is f and the elements are i0...iN /// then computes f (... (f s i0)...) iN. /// If the accumulator function is synchronous, consider using . ///