diff --git a/src/FSharp.Control.TaskSeq/TaskSeq.fsi b/src/FSharp.Control.TaskSeq/TaskSeq.fsi
index fc95bd8c..8f6992a6 100644
--- a/src/FSharp.Control.TaskSeq/TaskSeq.fsi
+++ b/src/FSharp.Control.TaskSeq/TaskSeq.fsi
@@ -31,7 +31,7 @@ type TaskSeq =
///
/// 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 for an alternative.
+ /// should not be used on potentially infinite sequences, see for an alternative.
///
///
/// The input task sequence.
@@ -202,7 +202,7 @@ type TaskSeq =
///
/// Views the task sequence in as an F# , that is, an
- /// . This function is blocking at each or call
+ /// . This function is blocking at each or call
/// to in the resulting sequence.
/// Resources are disposed when the sequence is disposed, or the sequence is exhausted.
///
@@ -375,8 +375,8 @@ type TaskSeq =
static member box: source: TaskSeq<'T> -> TaskSeq
///
- /// Unboxes to the target type each item in the input task sequence.
- /// The target type must be a or a built-in value type.
+ /// Unboxes to the target type each item in the input task sequence.
+ /// The target type must be a or a built-in value type.
///
///
/// The input task sequence.
@@ -456,7 +456,7 @@ type TaskSeq =
///
/// Builds a new task sequence whose elements are the results of applying the
/// function to each of the elements of the input task sequence in .
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///
@@ -471,7 +471,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the
/// function to each of the elements of the input task sequence in , passing
/// an extra zero-based index argument to the function.
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///
@@ -485,7 +485,7 @@ type TaskSeq =
///
/// Builds a new task sequence whose elements are the results of applying the asynchronous
/// function to each of the elements of the input task sequence in .
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///
@@ -500,7 +500,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the asynchronous
/// function to each of the elements of the input task sequence in , passing
/// an extra zero-based index argument to the function.
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///
@@ -515,7 +515,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the
/// function to each of the elements of the input task sequence in , and concatenating the
/// returned task sequences.
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///
@@ -530,7 +530,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the
/// function to each of the elements of the input task sequence in , and concatenating the
/// returned regular F# sequences.
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///
@@ -545,7 +545,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the asynchronous
/// function to each of the elements of the input task sequence in , and concatenating the
/// returned task sequences.
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///
@@ -561,7 +561,7 @@ type TaskSeq =
/// Builds a new task sequence whose elements are the results of applying the asynchronous
/// function to each of the elements of the input task sequence in , and concatenating the
/// returned regular F# sequences.
- /// The given function will be applied as elements are pulled using the
+ /// The given function will be applied as elements are pulled using the
/// method on async enumerators retrieved from the input task sequence.
/// Does not evaluate the input sequence until requested.
///