Skip to content

Commit

Permalink
typeparamref -> paramref
Browse files Browse the repository at this point in the history
VS doesnt render the former
  • Loading branch information
bartelink committed Dec 23, 2023
1 parent 3b063b1 commit 7efc8fe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/FSharp.Control.TaskSeq/TaskSeq.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ type TaskSeq =
/// If <paramref name="chooser" /> is asynchronous, consider using <see cref="TaskSeq.chooseAsync" />.
/// </summary>
///
/// <param name="chooser">A function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
/// <param name="chooser">A function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <param name="source">The input task sequence.</param>
/// <returns>The resulting task sequence.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
Expand All @@ -697,7 +697,7 @@ type TaskSeq =
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.choose" />.
/// </summary>
///
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <param name="source">The input task sequence.</param>
/// <returns>The resulting task sequence.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
Expand Down Expand Up @@ -934,7 +934,7 @@ type TaskSeq =
/// the function returns <see cref="Some(x)" />.
/// If <paramref name="chooser" /> is asynchronous, consider using <see cref="TaskSeq.tryPickAsync" />.
/// </summary>
/// <param name="chooser">A function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
/// <param name="chooser">A function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <param name="source">The input task sequence.</param>
/// <returns>The chosen element or <see cref="None" />.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
Expand All @@ -945,7 +945,7 @@ type TaskSeq =
/// the function returns <see cref="Some(x)" />.
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.tryPick" />.
/// </summary>
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <param name="source">The input task sequence.</param>
/// <returns>The chosen element or <see cref="None" />.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
Expand Down Expand Up @@ -1005,7 +1005,7 @@ type TaskSeq =
/// If <paramref name="chooser" /> is asynchronous, consider using <see cref="TaskSeq.pickAsync" />.
/// </summary>
///
/// <param name="chooser">A function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
/// <param name="chooser">A function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <param name="source">The input sequence.</param>
/// <returns>The selected element.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
Expand All @@ -1018,7 +1018,7 @@ type TaskSeq =
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.pick" />.
/// </summary>
///
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <param name="source">The input sequence.</param>
/// <returns>The selected element.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
Expand Down Expand Up @@ -1165,7 +1165,7 @@ type TaskSeq =

/// <summary>
/// Applies the function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
/// 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>
/// 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>
/// then computes <code>f (... (f s i0)...) iN</code>.
/// If the accumulator function <paramref name="folder" /> is asynchronous, consider using <see cref="TaskSeq.foldAsync" />.
/// </summary>
Expand All @@ -1179,7 +1179,7 @@ type TaskSeq =

/// <summary>
/// Applies the asynchronous function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
/// 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>
/// 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>
/// then computes <code>f (... (f s i0)...) iN</code>.
/// If the accumulator function <paramref name="folder" /> is synchronous, consider using <see cref="TaskSeq.fold" />.
/// </summary>
Expand Down

0 comments on commit 7efc8fe

Please sign in to comment.