Skip to content

Commit f9ad06a

Browse files
Copilotjkotas
andauthored
Fix typo in Vector.Create index parameter documentation (#12067)
* Fix typo: change 'being' to 'begin' in Vector.Create index parameter documentation Co-authored-by: jkotas <6668460+jkotas@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jkotas <6668460+jkotas@users.noreply.github.com>
1 parent d8ec0a7 commit f9ad06a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

xml/System.Runtime.Intrinsics/Vector128.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4514,7 +4514,7 @@ On x86, this method corresponds to __m128i _mm_setr_epi8
45144514
<Docs>
45154515
<typeparam name="T">The type of the elements in the vector.</typeparam>
45164516
<param name="values">The array from which the vector is created.</param>
4517-
<param name="index">The index in <paramref name="values" /> at which to being reading elements.</param>
4517+
<param name="index">The index in <paramref name="values" /> at which to begin reading elements.</param>
45184518
<summary>Creates a new <see cref="T:System.Runtime.Intrinsics.Vector128`1" /> from a given array.</summary>
45194519
<returns>A new <see cref="T:System.Runtime.Intrinsics.Vector128`1" /> with its elements set to the first <see cref="P:System.Runtime.Intrinsics.Vector128`1.Count" /> elements from <paramref name="values" />.</returns>
45204520
<remarks>To be added.</remarks>

xml/System.Runtime.Intrinsics/Vector256.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4362,7 +4362,7 @@ On x86, this method corresponds to __m256i _mm256_setr_epi8
43624362
<Docs>
43634363
<typeparam name="T">The type of the elements in the vector.</typeparam>
43644364
<param name="values">The array from which the vector is created.</param>
4365-
<param name="index">The index in <paramref name="values" /> at which to being reading elements.</param>
4365+
<param name="index">The index in <paramref name="values" /> at which to begin reading elements.</param>
43664366
<summary>Creates a new <see cref="T:System.Runtime.Intrinsics.Vector256`1" /> from a given array.</summary>
43674367
<returns>A new <see cref="T:System.Runtime.Intrinsics.Vector256`1" /> with its elements set to the first <see cref="P:System.Runtime.Intrinsics.Vector128`1.Count" /> elements from <paramref name="values" />.</returns>
43684368
<remarks>To be added.</remarks>

xml/System.Runtime.Intrinsics/Vector512.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4073,7 +4073,7 @@
40734073
<Docs>
40744074
<typeparam name="T">The type of the elements in the vector.</typeparam>
40754075
<param name="values">The array from which the vector is created.</param>
4076-
<param name="index">The index in <paramref name="values" /> at which to being reading elements.</param>
4076+
<param name="index">The index in <paramref name="values" /> at which to begin reading elements.</param>
40774077
<summary>Creates a new <see cref="T:System.Runtime.Intrinsics.Vector512`1" /> from a given array.</summary>
40784078
<returns>A new vector with its elements set to the first <see cref="P:System.Runtime.Intrinsics.Vector256`1.Count" /> elements from <paramref name="values" />.</returns>
40794079
<remarks>To be added.</remarks>

xml/System.Runtime.Intrinsics/Vector64.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3287,7 +3287,7 @@ On x86, this method corresponds to __m64 _mm_setr_pi8
32873287
<Docs>
32883288
<typeparam name="T">The type of the elements in the vector.</typeparam>
32893289
<param name="values">The array from which the vector is created.</param>
3290-
<param name="index">The index in <paramref name="values" /> at which to being reading elements.</param>
3290+
<param name="index">The index in <paramref name="values" /> at which to begin reading elements.</param>
32913291
<summary>Creates a new <see cref="T:System.Runtime.Intrinsics.Vector64`1" /> from a given array.</summary>
32923292
<returns>A new <see cref="T:System.Runtime.Intrinsics.Vector64`1" /> with its elements set to the first <see cref="P:System.Runtime.Intrinsics.Vector128`1.Count" /> elements from <paramref name="values" />.</returns>
32933293
<remarks>To be added.</remarks>

0 commit comments

Comments
 (0)