Skip to content

Commit 6d93143

Browse files
committed
Fix minor glitch in documentation
1 parent 7d6e367 commit 6d93143

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/FSharp.Control.TaskSeq/TaskSeq.fsi

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -728,8 +728,8 @@ type TaskSeq =
728728
/// <summary>
729729
/// Returns a task sequence that, when iterated, skips <paramref name="count" /> elements of the underlying
730730
/// sequence, and then yields the remainder. Raises an exception if there are not <paramref name="count" />
731-
/// items. See <see cref="drop" /> for a version that does not raise an exception.
732-
/// See also <see cref="take" /> for the inverse of this operation.
731+
/// items. See <see cref="TaskSeq.drop" /> for a version that does not raise an exception.
732+
/// See also <see cref="TaskSeq.take" /> for the inverse of this operation.
733733
/// </summary>
734734
///
735735
/// <param name="count">The number of items to skip.</param>
@@ -746,8 +746,8 @@ type TaskSeq =
746746
/// <summary>
747747
/// Returns a task sequence that, when iterated, drops at most <paramref name="count" /> elements of the
748748
/// underlying sequence, and then returns the remainder of the elements, if any.
749-
/// See <see cref="skip" /> for a version that raises an exception if there
750-
/// are not enough elements. See also <see cref="truncate" /> for the inverse of this operation.
749+
/// See <see cref="TaskSeq.skip" /> for a version that raises an exception if there
750+
/// are not enough elements. See also <see cref="TaskSeq.truncate" /> for the inverse of this operation.
751751
/// </summary>
752752
///
753753
/// <param name="count">The maximum number of items to drop.</param>
@@ -760,8 +760,8 @@ type TaskSeq =
760760
/// <summary>
761761
/// Returns a task sequence that, when iterated, yields <paramref name="count" /> elements of the
762762
/// underlying sequence, and then returns no further elements. Raises an exception if there are not enough
763-
/// elements in the sequence. See <see cref="truncate" /> for a version that does not raise an exception.
764-
/// See also <see cref="skip" /> for the inverse of this operation.
763+
/// elements in the sequence. See <see cref="TaskSeq.truncate" /> for a version that does not raise an exception.
764+
/// See also <see cref="TaskSeq.skip" /> for the inverse of this operation.
765765
/// </summary>
766766
///
767767
/// <param name="count">The number of items to take.</param>
@@ -777,8 +777,8 @@ type TaskSeq =
777777
/// <summary>
778778
/// Returns a task sequence that, when iterated, yields at most <paramref name="count" /> elements of the underlying
779779
/// sequence, truncating the remainder, if any.
780-
/// See <see cref="take" /> for a version that raises an exception if there are not enough elements in the
781-
/// sequence. See also <see cref="drop" /> for the inverse of this operation.
780+
/// See <see cref="TaskSeq.take" /> for a version that raises an exception if there are not enough elements in the
781+
/// sequence. See also <see cref="TaskSeq.drop" /> for the inverse of this operation.
782782
/// </summary>
783783
///
784784
/// <param name="count">The maximum number of items to enumerate.</param>

0 commit comments

Comments
 (0)