Skip to content

Commit 2205ebe

Browse files
committed
invalid cref -> paramref
1 parent 3810940 commit 2205ebe

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/FSharp.Control.TaskSeq/TaskSeq.fsi

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type TaskSeq =
3131

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

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

377377
/// <summary>
378-
/// Unboxes to the target type <see cref="'U" /> each item in the input task sequence.
379-
/// The target type must be a <see cref="struct" /> or a built-in value type.
378+
/// Unboxes to the target type <see paramref="'U" /> each item in the input task sequence.
379+
/// The target type must be a <see paramref="struct" /> or a built-in value type.
380380
/// </summary>
381381
///
382382
/// <param name="source">The input task sequence.</param>
@@ -456,7 +456,7 @@ type TaskSeq =
456456
/// <summary>
457457
/// Builds a new task sequence whose elements are the results of applying the <paramref name="mapper" />
458458
/// function to each of the elements of the input task sequence in <paramref name="source" />.
459-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
459+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
460460
/// method on async enumerators retrieved from the input task sequence.
461461
/// Does not evaluate the input sequence until requested.
462462
/// </summary>
@@ -471,7 +471,7 @@ type TaskSeq =
471471
/// Builds a new task sequence whose elements are the results of applying the <paramref name="mapper" />
472472
/// function to each of the elements of the input task sequence in <paramref name="source" />, passing
473473
/// an extra zero-based index argument to the <paramref name="mapper" /> function.
474-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
474+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
475475
/// method on async enumerators retrieved from the input task sequence.
476476
/// Does not evaluate the input sequence until requested.
477477
/// </summary>
@@ -485,7 +485,7 @@ type TaskSeq =
485485
/// <summary>
486486
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="mapper" />
487487
/// function to each of the elements of the input task sequence in <paramref name="source" />.
488-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
488+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
489489
/// method on async enumerators retrieved from the input task sequence.
490490
/// Does not evaluate the input sequence until requested.
491491
/// </summary>
@@ -500,7 +500,7 @@ type TaskSeq =
500500
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="mapper" />
501501
/// function to each of the elements of the input task sequence in <paramref name="source" />, passing
502502
/// an extra zero-based index argument to the <paramref name="mapper" /> function.
503-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
503+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
504504
/// method on async enumerators retrieved from the input task sequence.
505505
/// Does not evaluate the input sequence until requested.
506506
/// </summary>
@@ -515,7 +515,7 @@ type TaskSeq =
515515
/// Builds a new task sequence whose elements are the results of applying the <paramref name="binder" />
516516
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
517517
/// returned task sequences.
518-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
518+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
519519
/// method on async enumerators retrieved from the input task sequence.
520520
/// Does not evaluate the input sequence until requested.
521521
/// </summary>
@@ -530,7 +530,7 @@ type TaskSeq =
530530
/// Builds a new task sequence whose elements are the results of applying the <paramref name="binder" />
531531
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
532532
/// returned regular F# sequences.
533-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
533+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
534534
/// method on async enumerators retrieved from the input task sequence.
535535
/// Does not evaluate the input sequence until requested.
536536
/// </summary>
@@ -545,7 +545,7 @@ type TaskSeq =
545545
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="binder" />
546546
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
547547
/// returned task sequences.
548-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
548+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
549549
/// method on async enumerators retrieved from the input task sequence.
550550
/// Does not evaluate the input sequence until requested.
551551
/// </summary>
@@ -561,7 +561,7 @@ type TaskSeq =
561561
/// Builds a new task sequence whose elements are the results of applying the asynchronous <paramref name="binder" />
562562
/// function to each of the elements of the input task sequence in <paramref name="source" />, and concatenating the
563563
/// returned regular F# sequences.
564-
/// The given function will be applied as elements are pulled using the <see cref="MoveNextAsync" />
564+
/// The given function will be applied as elements are pulled using the <see paramref="MoveNextAsync" />
565565
/// method on async enumerators retrieved from the input task sequence.
566566
/// Does not evaluate the input sequence until requested.
567567
/// </summary>

0 commit comments

Comments
 (0)