Skip to content

Commit 0b7b537

Browse files
committed
More cref -> paramref
1 parent 2205ebe commit 0b7b537

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/FSharp.Control.TaskSeq/TaskSeq.fsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ type TaskSeq =
10851085
///
10861086
/// <param name="value">The value to locate in the input sequence.</param>
10871087
/// <param name="source">The input task sequence.</param>
1088-
/// <returns><see cref="True" /> if the input sequence contains the specified element; <see cref="false" /> otherwise.</returns>
1088+
/// <returns><see cref="true" /> if the input sequence contains the specified element; <see cref="false" /> otherwise.</returns>
10891089
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
10901090
static member contains<'T when 'T: equality> : value: 'T -> source: TaskSeq<'T> -> Task<bool>
10911091

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

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

src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Internal =
2525
val inline raiseNotImpl: unit -> 'a
2626

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

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

0 commit comments

Comments
 (0)