diff --git a/src/Microsoft.ML.DataView/VectorType.cs b/src/Microsoft.ML.DataView/VectorType.cs
index 5f782d15ff..8402b27661 100644
--- a/src/Microsoft.ML.DataView/VectorType.cs
+++ b/src/Microsoft.ML.DataView/VectorType.cs
@@ -26,10 +26,10 @@ public sealed class VectorDataViewType : StructuredDataViewType
/// In the case where this is a multi-dimensional type, that is, a situation where
/// has length greater than one, since itself is a single dimensional structure,
/// we must clarify what we mean. The indices represent a "flattened" view of the coordinates implicit in the
- /// dimensions. We consider that that last dimension is the most "minor" index. In the case where
+ /// dimensions. We consider that the last dimension is the most "minor" index. In the case where
/// has length 2, this is commonly referred to as row-major order. So, if you hypothetically had
/// dimensions of { 5, 2 }, then the values would be all of length 10,
- /// and the flattened indices in the of 0, 1, 2, 3, 4, ... would correspond to "coordinates" of
+ /// and the flattened indices 0, 1, 2, 3, 4, ... would correspond to "coordinates" of
/// (0, 0), (0, 1), (1, 0), (1, 1), (2, 0), ..., respectively.
///
public ImmutableArray Dimensions { get; }