You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/libraries/System.Private.CoreLib/src/System/Numerics/Vector_1.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ public Vector(T value)
52
52
/// <param name="values">The array from which the vector is created.</param>
53
53
/// <returns>A new <see cref="Vector{T}" /> with its elements set to the first <see cref="Vector{T}.Count" /> elements from <paramref name="values" />.</returns>
54
54
/// <exception cref="NullReferenceException"><paramref name="values" /> is <c>null</c>.</exception>
55
-
/// <exception cref="ArgumentOutOfRangeException">The length of <paramref name="values" /> is less than <see cref="Vector128{T}.Count" />.</exception>
55
+
/// <exception cref="ArgumentOutOfRangeException">The length of <paramref name="values" /> is less than <see cref="Vector{T}.Count" />.</exception>
/// <param name="index">The index in <paramref name="values" /> at which to being reading elements.</param>
72
72
/// <returns>A new <see cref="Vector{T}" /> with its elements set to the first <see cref="Vector{T}.Count" /> elements from <paramref name="values" />.</returns>
73
73
/// <exception cref="NullReferenceException"><paramref name="values" /> is <c>null</c>.</exception>
74
-
/// <exception cref="ArgumentOutOfRangeException">The length of <paramref name="values" />, starting from <paramref name="index" />, is less than <see cref="Vector128{T}.Count" />.</exception>
74
+
/// <exception cref="ArgumentOutOfRangeException">The length of <paramref name="values" />, starting from <paramref name="index" />, is less than <see cref="Vector{T}.Count" />.</exception>
0 commit comments