diff --git a/src/libraries/System.Private.CoreLib/src/System/Numerics/Vector_1.cs b/src/libraries/System.Private.CoreLib/src/System/Numerics/Vector_1.cs
index 9799c31049649f..f1838df4caedae 100644
--- a/src/libraries/System.Private.CoreLib/src/System/Numerics/Vector_1.cs
+++ b/src/libraries/System.Private.CoreLib/src/System/Numerics/Vector_1.cs
@@ -63,7 +63,7 @@ public Vector(T[] values)
/// Creates a new from a given array.
/// The array from which the vector is created.
- /// The index in at which to being reading elements.
+ /// The index in at which to begin reading elements.
/// A new with its elements set to the first elements from .
/// is null.
/// The length of , starting from , is less than .
diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/ISimdVector_2.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/ISimdVector_2.cs
index b00c7701adaba4..a43a6ab74fcf57 100644
--- a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/ISimdVector_2.cs
+++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/ISimdVector_2.cs
@@ -236,7 +236,7 @@ static virtual void CopyTo(TSelf vector, Span destination)
/// Creates a new vector from a given array.
/// The array from which the vector is created.
- /// The index in at which to being reading elements.
+ /// The index in at which to begin reading elements.
/// A new vector with its elements set to the first elements from .
/// The length of , starting from , is less than .
/// The type of the elements in the vector () is not supported.
diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs
index e26aaf0effb926..93e5a25c477fbe 100644
--- a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs
+++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs
@@ -993,7 +993,7 @@ public static Vector128 Create(T[] values)
/// Creates a new from a given array.
/// The type of the elements in the vector.
/// The array from which the vector is created.
- /// The index in at which to being reading elements.
+ /// The index in at which to begin reading elements.
/// A new with its elements set to the first elements from .
/// The length of , starting from , is less than .
/// The type of () is not supported.
diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs
index 573eb014c7051c..38d7eb0e1c2f59 100644
--- a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs
+++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs
@@ -1000,7 +1000,7 @@ public static Vector256 Create(T[] values)
/// Creates a new from a given array.
/// The type of the elements in the vector.
/// The array from which the vector is created.
- /// The index in at which to being reading elements.
+ /// The index in at which to begin reading elements.
/// A new with its elements set to the first elements from .
/// The length of , starting from , is less than .
/// The type of () is not supported.
diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector512.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector512.cs
index e1afa4ad4a01d0..944397b1eb3143 100644
--- a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector512.cs
+++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector512.cs
@@ -902,7 +902,7 @@ public static Vector512 Create(T[] values)
/// Creates a new from a given array.
/// The type of the elements in the vector.
/// The array from which the vector is created.
- /// The index in at which to being reading elements.
+ /// The index in at which to begin reading elements.
/// A new with its elements set to the first elements from .
/// The length of , starting from , is less than .
/// The type of () is not supported.
diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs
index 7727fe68adcaf9..3c80c23498ac92 100644
--- a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs
+++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs
@@ -973,7 +973,7 @@ public static Vector64 Create(T[] values)
/// Creates a new from a given array.
/// The type of the elements in the vector.
/// The array from which the vector is created.
- /// The index in at which to being reading elements.
+ /// The index in at which to begin reading elements.
/// A new with its elements set to the first elements from .
/// The length of , starting from , is less than .
/// The type of () is not supported.