Skip to content

Commit

Permalink
More cref -> paramref
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Dec 23, 2023
1 parent 2205ebe commit 0b7b537
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/FSharp.Control.TaskSeq/TaskSeq.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ type TaskSeq =
///
/// <param name="value">The value to locate in the input sequence.</param>
/// <param name="source">The input task sequence.</param>
/// <returns><see cref="True" /> if the input sequence contains the specified element; <see cref="false" /> otherwise.</returns>
/// <returns><see cref="true" /> if the input sequence contains the specified element; <see cref="false" /> otherwise.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
static member contains<'T when 'T: equality> : value: 'T -> source: TaskSeq<'T> -> Task<bool>

Expand All @@ -1098,7 +1098,7 @@ type TaskSeq =
///
/// <param name="predicate">A function to test each item of the input sequence.</param>
/// <param name="source">The input task sequence.</param>
/// <returns><see cref="True" /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
/// <returns><see cref="true" /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
static member exists: predicate: ('T -> bool) -> source: TaskSeq<'T> -> Task<bool>

Expand All @@ -1111,7 +1111,7 @@ type TaskSeq =
///
/// <param name="predicate">A function to test each item of the input sequence.</param>
/// <param name="source">The input task sequence.</param>
/// <returns><see cref="True" /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
/// <returns><see cref="true" /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
static member existsAsync: predicate: ('T -> #Task<bool>) -> source: TaskSeq<'T> -> Task<bool>

Expand Down
4 changes: 2 additions & 2 deletions src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module Internal =
val inline raiseNotImpl: unit -> 'a

/// <summary>
/// Represents a <see cref="task sequence" /> and is the output of using the <paramref name="taskSeq{...}" />
/// Represents a <see paramref="task sequence" /> and is the output of using the <paramref name="taskSeq{...}" />
/// computation expression from this library. It is an alias for <see cref="T:System.IAsyncEnumerable&lt;_>" />.
/// The type <paramref name="taskSeq&lt;_>" /> is deprecated since version 0.4.0,
/// please use <paramref name="TaskSeq&lt;_>" /> in its stead. See <see cref="T:FSharp.Control.TaskSeq&lt;_>" />.
Expand All @@ -34,7 +34,7 @@ module Internal =
type taskSeq<'T> = IAsyncEnumerable<'T>

/// <summary>
/// Represents a <see cref="task sequence" /> and is the output of using the <paramref name="taskSeq{...}" />
/// Represents a <see paramref="task sequence" /> and is the output of using the <paramref name="taskSeq{...}" />
/// computation expression from this library. It is an alias for <see cref="T:System.IAsyncEnumerable&lt;_>" />.
/// </summary>
type TaskSeq<'T> = IAsyncEnumerable<'T>
Expand Down

0 comments on commit 0b7b537

Please sign in to comment.