Skip to content

Commit d3c67c3

Browse files
committed
Fix type param documentation for Vector* TryCopyTo and Create
1 parent 3aca08a commit d3c67c3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

xml/System.Runtime.Intrinsics/Vector128.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2838,7 +2838,7 @@ On x86, this method corresponds to __m128i _mm_setr_epi8
28382838
<Parameter Name="value" Type="T" Index="0" FrameworkAlternate="net-7.0" />
28392839
</Parameters>
28402840
<Docs>
2841-
<typeparam name="T">To be added.</typeparam>
2841+
<typeparam name="T">The type of the elements in the vector.</typeparam>
28422842
<param name="value">The value that all elements will be initialized to.</param>
28432843
<summary>Creates a new <see cref="T:System.Runtime.Intrinsics.Vector128`1" /> instance with all elements initialized to the specified value.</summary>
28442844
<returns>A new <see cref="T:System.Runtime.Intrinsics.Vector128`1" /> with all elements initialized to <paramref name="value" />.</returns>
@@ -6723,7 +6723,7 @@ This method may bypass the cache on certain platforms.
67236723
<Parameter Name="destination" Type="System.Span&lt;T&gt;" Index="1" FrameworkAlternate="net-7.0" />
67246724
</Parameters>
67256725
<Docs>
6726-
<typeparam name="T">To be added.</typeparam>
6726+
<typeparam name="T">The type of the input vector.</typeparam>
67276727
<param name="vector">The vector to copy.</param>
67286728
<param name="destination">The span to which <paramref name="destination" /> is copied.</param>
67296729
<summary>Tries to copy a <see cref="T:System.Numerics.Vector`1" /> to a given span.</summary>

xml/System.Runtime.Intrinsics/Vector256.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6623,7 +6623,7 @@ This method may bypass the cache on certain platforms.
66236623
<Parameter Name="destination" Type="System.Span&lt;T&gt;" Index="1" FrameworkAlternate="net-7.0" />
66246624
</Parameters>
66256625
<Docs>
6626-
<typeparam name="T">To be added.</typeparam>
6626+
<typeparam name="T">The type of the input vector.</typeparam>
66276627
<param name="vector">The vector to copy.</param>
66286628
<param name="destination">The span to which <paramref name="destination" /> is copied.</param>
66296629
<summary>Tries to copy a <see cref="T:System.Numerics.Vector`1" /> to a given span.</summary>

xml/System.Runtime.Intrinsics/Vector64.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2019,7 +2019,7 @@ On x86, this method corresponds to __m64 _mm_setr_pi8
20192019
<Parameter Name="value" Type="T" Index="0" FrameworkAlternate="net-7.0" />
20202020
</Parameters>
20212021
<Docs>
2022-
<typeparam name="T">To be added.</typeparam>
2022+
<typeparam name="T">The type of the elements in the vector.</typeparam>
20232023
<param name="value">The value that all elements will be initialized to.</param>
20242024
<summary>Creates a new <see cref="T:System.Runtime.Intrinsics.Vector64`1" /> instance with all elements initialized to the specified value.</summary>
20252025
<returns>A new <see cref="T:System.Runtime.Intrinsics.Vector64`1" /> with all elements initialized to <paramref name="value" />.</returns>
@@ -5638,7 +5638,7 @@ This method may bypass the cache on certain platforms.
56385638
<Parameter Name="destination" Type="System.Span&lt;T&gt;" Index="1" FrameworkAlternate="net-7.0" />
56395639
</Parameters>
56405640
<Docs>
5641-
<typeparam name="T">To be added.</typeparam>
5641+
<typeparam name="T">The type of the input vector.</typeparam>
56425642
<param name="vector">The vector to copy.</param>
56435643
<param name="destination">The span to which <paramref name="destination" /> is copied.</param>
56445644
<summary>Tries to copy a <see cref="T:System.Numerics.Vector`1" /> to a given span.</summary>

0 commit comments

Comments
 (0)