Skip to content

Commit 7efc8fe

Browse files
committed
typeparamref -> paramref
VS doesnt render the former
1 parent 3b063b1 commit 7efc8fe

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/FSharp.Control.TaskSeq/TaskSeq.fsi

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ type TaskSeq =
684684
/// If <paramref name="chooser" /> is asynchronous, consider using <see cref="TaskSeq.chooseAsync" />.
685685
/// </summary>
686686
///
687-
/// <param name="chooser">A function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
687+
/// <param name="chooser">A function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
688688
/// <param name="source">The input task sequence.</param>
689689
/// <returns>The resulting task sequence.</returns>
690690
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -697,7 +697,7 @@ type TaskSeq =
697697
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.choose" />.
698698
/// </summary>
699699
///
700-
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
700+
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
701701
/// <param name="source">The input task sequence.</param>
702702
/// <returns>The resulting task sequence.</returns>
703703
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -934,7 +934,7 @@ type TaskSeq =
934934
/// the function returns <see cref="Some(x)" />.
935935
/// If <paramref name="chooser" /> is asynchronous, consider using <see cref="TaskSeq.tryPickAsync" />.
936936
/// </summary>
937-
/// <param name="chooser">A function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
937+
/// <param name="chooser">A function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
938938
/// <param name="source">The input task sequence.</param>
939939
/// <returns>The chosen element or <see cref="None" />.</returns>
940940
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -945,7 +945,7 @@ type TaskSeq =
945945
/// the function returns <see cref="Some(x)" />.
946946
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.tryPick" />.
947947
/// </summary>
948-
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
948+
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
949949
/// <param name="source">The input task sequence.</param>
950950
/// <returns>The chosen element or <see cref="None" />.</returns>
951951
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -1005,7 +1005,7 @@ type TaskSeq =
10051005
/// If <paramref name="chooser" /> is asynchronous, consider using <see cref="TaskSeq.pickAsync" />.
10061006
/// </summary>
10071007
///
1008-
/// <param name="chooser">A function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
1008+
/// <param name="chooser">A function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
10091009
/// <param name="source">The input sequence.</param>
10101010
/// <returns>The selected element.</returns>
10111011
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -1018,7 +1018,7 @@ type TaskSeq =
10181018
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.pick" />.
10191019
/// </summary>
10201020
///
1021-
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
1021+
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
10221022
/// <param name="source">The input sequence.</param>
10231023
/// <returns>The selected element.</returns>
10241024
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -1165,7 +1165,7 @@ type TaskSeq =
11651165

11661166
/// <summary>
11671167
/// Applies the function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
1168-
/// argument of type <typeparamref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1168+
/// argument of type <paramref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
11691169
/// then computes <code>f (... (f s i0)...) iN</code>.
11701170
/// If the accumulator function <paramref name="folder" /> is asynchronous, consider using <see cref="TaskSeq.foldAsync" />.
11711171
/// </summary>
@@ -1179,7 +1179,7 @@ type TaskSeq =
11791179

11801180
/// <summary>
11811181
/// Applies the asynchronous function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
1182-
/// argument of type <typeparamref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1182+
/// argument of type <paramref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
11831183
/// then computes <code>f (... (f s i0)...) iN</code>.
11841184
/// If the accumulator function <paramref name="folder" /> is synchronous, consider using <see cref="TaskSeq.fold" />.
11851185
/// </summary>

0 commit comments

Comments
 (0)