Skip to content

Commit

Permalink
invalid cref -> paramref
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Dec 23, 2023
1 parent 3810940 commit 2205ebe
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/FSharp.Control.TaskSeq/TaskSeq.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type TaskSeq =

/// <summary>
/// Returns the length of the sequence. This operation requires the whole sequence to be evaluated and
/// should not be used on potentially infinite sequences, see <see cref="lengthOrMax" /> for an alternative.
/// should not be used on potentially infinite sequences, see <see cref="TaskSeq.lengthOrMax" /> for an alternative.
/// </summary>
///
/// <param name="source">The input task sequence.</param>
Expand Down Expand Up @@ -202,7 +202,7 @@ type TaskSeq =

/// <summary>
/// Views the task sequence in <paramref name="source" /> as an F# <see cref="seq" />, that is, an
/// <see cref="IEnumerable&lt;'T>" />. This function is blocking at each <see cref="yield" /> or call
/// <see cref="IEnumerable&lt;'T>" />. This function is blocking at each <see paramref="yield" /> or call
/// to <see cref="IEnumerable&lt;'T>/MoveNext()" /> in the resulting sequence.
/// Resources are disposed when the sequence is disposed, or the sequence is exhausted.
/// </summary>
Expand Down Expand Up @@ -375,8 +375,8 @@ type TaskSeq =
static member box: source: TaskSeq<'T> -> TaskSeq<obj>

/// <summary>
/// Unboxes to the target type <see cref="'U" /> each item in the input task sequence.
/// The target type must be a <see cref="struct" /> or a built-in value type.
/// Unboxes to the target type <see paramref="'U" /> each item in the input task sequence.
/// The target type must be a <see paramref="struct" /> or a built-in value type.
/// </summary>
///
/// <param name="source">The input task sequence.</param>
Expand Down Expand Up @@ -456,7 +456,7 @@ type TaskSeq =
/// <summary>
/// Builds a new task sequence whose elements are the results of applying the <paramref name="mapper" />
/// function to each of the elements of the input task sequence in <paramref name="source" />.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand All @@ -471,7 +471,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the <paramref name="mapper" />
/// function to each of the elements of the input task sequence in <paramref name="source" />, passing
/// an extra zero-based index argument to the <paramref name="mapper" /> function.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand All @@ -485,7 +485,7 @@ type TaskSeq =
/// <summary>
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="mapper" />
/// function to each of the elements of the input task sequence in <paramref name="source" />.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand All @@ -500,7 +500,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="mapper" />
/// function to each of the elements of the input task sequence in <paramref name="source" />, passing
/// an extra zero-based index argument to the <paramref name="mapper" /> function.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand All @@ -515,7 +515,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the <paramref name="binder" />
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
/// returned task sequences.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand All @@ -530,7 +530,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the <paramref name="binder" />
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
/// returned regular F# sequences.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand All @@ -545,7 +545,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="binder" />
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
/// returned task sequences.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand All @@ -561,7 +561,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="binder" />
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
/// returned regular F# sequences.
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
/// </summary>
Expand Down

0 comments on commit 2205ebe

Please sign in to comment.