Skip to content

Commit 695f8ac

Browse files
TianqiZhangmairaw
authored andcommitted
Fix a few complex generic <see cref /> references (#3394)
* Fix a few complex generic <see cref /> references * removed namespace * change format
1 parent 48a8c40 commit 695f8ac

File tree

4 files changed

+32
-32
lines changed

4 files changed

+32
-32
lines changed

xml/System.Data.Objects.DataClasses/StructuralObject.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,7 @@
13101310
<Docs>
13111311
<param name="value">The value being set.</param>
13121312
<param name="isNullable">Indicates whether the property is nullable.</param>
1313-
<summary>Makes sure the <see cref="T:System.Byte[]" /> value being set for a property is valid.</summary>
1313+
<summary>Makes sure the byte array value being set for a property is valid.</summary>
13141314
<returns>A <see cref="T:System.Byte" /> value being set.</returns>
13151315
<remarks>To be added.</remarks>
13161316
<exception cref="T:System.Data.ConstraintException">If value is null for a non-nullable value.</exception>

xml/System.Numerics/Vector.xml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@
922922
</Parameters>
923923
<Docs>
924924
<param name="value">The source vector.</param>
925-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.Int64}" /> to a <see cref="T:System.Numerics.Vector{System.Double}" />.</summary>
925+
<summary>Converts a <c>Vector&lt;Int64&gt;</c> to a <c>Vector&lt;Double&gt;</c>.</summary>
926926
<returns>The converted vector.</returns>
927927
<remarks>To be added.</remarks>
928928
</Docs>
@@ -958,7 +958,7 @@
958958
</Parameters>
959959
<Docs>
960960
<param name="value">The source vector.</param>
961-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.UInt64}" /> to a <see cref="T:System.Numerics.Vector{System.Double}" />.</summary>
961+
<summary>Converts a <c>Vector&lt;UInt64&gt;</c> to a <c>Vector&lt;Double&gt;</c>.</summary>
962962
<returns>The converted vector.</returns>
963963
<remarks>To be added.</remarks>
964964
</Docs>
@@ -989,7 +989,7 @@
989989
</Parameters>
990990
<Docs>
991991
<param name="value">The source vector.</param>
992-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.Single}" /> to a <see cref="T:System.Numerics.Vector{System.Int32}" />.</summary>
992+
<summary>Converts a <c>Vector&lt;Single&gt;</c> to a <c>Vector&lt;Int32&gt;</c>.</summary>
993993
<returns>The converted vector.</returns>
994994
<remarks>To be added.</remarks>
995995
</Docs>
@@ -1020,7 +1020,7 @@
10201020
</Parameters>
10211021
<Docs>
10221022
<param name="value">The source vector.</param>
1023-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.Double}" /> to a <see cref="T:System.Numerics.Vector{System.Int64}" />.</summary>
1023+
<summary>Converts a <c>Vector&lt;Double&gt;</c> to a <c>Vector&lt;Int64&gt;</c>.</summary>
10241024
<returns>The converted vector.</returns>
10251025
<remarks>To be added.</remarks>
10261026
</Docs>
@@ -1051,7 +1051,7 @@
10511051
</Parameters>
10521052
<Docs>
10531053
<param name="value">The source vector.</param>
1054-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.Int32}" /> to a <see cref="T:System.Numerics.Vector{System.Single}" />.</summary>
1054+
<summary>Converts a <c>Vector&lt;Int32&gt;</c> to a <c>Vector&lt;Single&gt;</c>.</summary>
10551055
<returns>The converted vector.</returns>
10561056
<remarks>To be added.</remarks>
10571057
</Docs>
@@ -1087,7 +1087,7 @@
10871087
</Parameters>
10881088
<Docs>
10891089
<param name="value">The source vector.</param>
1090-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.UInt32}" /> to a <see cref="T:System.Numerics.Vector{System.Single}" />.</summary>
1090+
<summary>Converts a <c>Vector&lt;UInt32&gt;</c> to a <c>Vector&lt;Single&gt;</c>.</summary>
10911091
<returns>The converted vector.</returns>
10921092
<remarks>To be added.</remarks>
10931093
</Docs>
@@ -1123,7 +1123,7 @@
11231123
</Parameters>
11241124
<Docs>
11251125
<param name="value">The source vector.</param>
1126-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.Single}" /> to a <see cref="T:System.Numerics.Vector{System.UInt32}" />.</summary>
1126+
<summary>Converts a <c>Vector&lt;Single&gt;</c> to a <c>Vector&lt;UInt32&gt;</c>.</summary>
11271127
<returns>The converted vector.</returns>
11281128
<remarks>To be added.</remarks>
11291129
</Docs>
@@ -1159,7 +1159,7 @@
11591159
</Parameters>
11601160
<Docs>
11611161
<param name="value">The source vector.</param>
1162-
<summary>Converts a <see cref="T:System.Numerics.Vector{System.Double}" /> to a <see cref="T:System.Numerics.Vector{System.UInt64}" />.</summary>
1162+
<summary>Converts a <c>Vector&lt;Double&gt;</c> to a <c>Vector&lt;UInt64&gt;</c>.</summary>
11631163
<returns>The converted vector.</returns>
11641164
<remarks>To be added.</remarks>
11651165
</Docs>
@@ -3101,8 +3101,8 @@
31013101
<Docs>
31023102
<param name="source1">The first source vector, whose elements become the lower-index elements of the return value.</param>
31033103
<param name="source2">The second source vector, whose elements become the higher-index elements of the return value.</param>
3104-
<summary>Narrows two <see cref="T:System.Numerics.Vector{System.Double}" /> instances into one <see cref="T:System.Numerics.Vector{System.Single}" />.</summary>
3105-
<returns>A <see cref="T:System.Numerics.Vector{System.Single}" /> containing elements narrowed from the source vectors.</returns>
3104+
<summary>Narrows two <c>Vector&lt;Double&gt;</c> instances into one <c>Vector&lt;Single&gt;</c>.</summary>
3105+
<returns>A <c>Vector&lt;Single&gt;</c> containing elements narrowed from the source vectors.</returns>
31063106
<remarks>To be added.</remarks>
31073107
</Docs>
31083108
</Member>
@@ -3139,8 +3139,8 @@
31393139
<Docs>
31403140
<param name="source1">The first source vector, whose elements become the lower-index elements of the return value.</param>
31413141
<param name="source2">The second source vector, whose elements become the higher-index elements of the return value.</param>
3142-
<summary>Narrows two <see cref="T:System.Numerics.Vector{System.Int16}" /> instances into one <see cref="T:System.Numerics.Vector{System.SByte}" />.</summary>
3143-
<returns>A <see cref="T:System.Numerics.Vector{System.SByte}" /> containing elements narrowed from the source vectors.</returns>
3142+
<summary>Narrows two <c>Vector&lt;Int16&gt;</c> instances into one <c>Vector&lt;SByte&gt;</c>.</summary>
3143+
<returns>A <c>Vector&lt;SByte&gt;</c> containing elements narrowed from the source vectors.</returns>
31443144
<remarks>To be added.</remarks>
31453145
</Docs>
31463146
</Member>
@@ -3172,8 +3172,8 @@
31723172
<Docs>
31733173
<param name="source1">The first source vector, whose elements become the lower-index elements of the return value.</param>
31743174
<param name="source2">The second source vector, whose elements become the higher-index elements of the return value.</param>
3175-
<summary>Narrows two <see cref="T:System.Numerics.Vector{System.Int32}" /> instances into one <see cref="T:System.Numerics.Vector{System.Int16}" />.</summary>
3176-
<returns>A <see cref="T:System.Numerics.Vector{System.Int16}" /> containing elements narrowed from the source vectors.</returns>
3175+
<summary>Narrows two <c>Vector&lt;Int32&gt;</c> instances into one <c>Vector&lt;Int16&gt;</c>.</summary>
3176+
<returns>A <c>Vector&lt;Int16&gt;</c> containing elements narrowed from the source vectors.</returns>
31773177
<remarks>To be added.</remarks>
31783178
</Docs>
31793179
</Member>
@@ -3205,8 +3205,8 @@
32053205
<Docs>
32063206
<param name="source1">The first source vector, whose elements become the lower-index elements of the return value.</param>
32073207
<param name="source2">The second source vector, whose elements become the higher-index elements of the return value.</param>
3208-
<summary>Narrows two <see cref="T:System.Numerics.Vector{System.Int64}" /> instances into one <see cref="T:System.Numerics.Vector{System.Int32}" />.</summary>
3209-
<returns>A <see cref="T:System.Numerics.Vector{System.Int32}" /> containing elements narrowed from the source vectors.</returns>
3208+
<summary>Narrows two <c>Vector&lt;Int64&gt;</c> instances into one <c>Vector&lt;Int32&gt;</c>.</summary>
3209+
<returns>A <c>Vector&lt;Int32&gt;</c> containing elements narrowed from the source vectors.</returns>
32103210
<remarks>To be added.</remarks>
32113211
</Docs>
32123212
</Member>
@@ -3243,8 +3243,8 @@
32433243
<Docs>
32443244
<param name="source1">The first source vector, whose elements become the lower-index elements of the return value.</param>
32453245
<param name="source2">The second source vector, whose elements become the higher-index elements of the return value.</param>
3246-
<summary>Narrows two <see cref="T:System.Numerics.Vector{System.UInt16}" /> instances into one <see cref="T:System.Numerics.Vector{System.Byte}" />.</summary>
3247-
<returns>A <see cref="T:System.Numerics.Vector{System.Byte}" /> containing elements narrowed from the source vectors.</returns>
3246+
<summary>Narrows two <c>Vector&lt;UInt16&gt;</c> instances into one <c>Vector&lt;Byte&gt;</c>.</summary>
3247+
<returns>A <c>Vector&lt;Byte&gt;</c> containing elements narrowed from the source vectors.</returns>
32483248
<remarks>To be added.</remarks>
32493249
</Docs>
32503250
</Member>
@@ -3281,8 +3281,8 @@
32813281
<Docs>
32823282
<param name="source1">The first source vector, whose elements become the lower-index elements of the return value.</param>
32833283
<param name="source2">The second source vector, whose elements become the higher-index elements of the return value.</param>
3284-
<summary>Narrows two <see cref="T:System.Numerics.Vector{System.UInt32}" /> instances into one <see cref="T:System.Numerics.Vector{System.UInt16}" />.</summary>
3285-
<returns>A <see cref="T:System.Numerics.Vector{System.UInt16}" /> containing elements narrowed from the source vectors.</returns>
3284+
<summary>Narrows two <c>Vector&lt;UInt32&gt;</c> instances into one <c>Vector&lt;UInt16&gt;</c>.</summary>
3285+
<returns>A <c>Vector&lt;UInt16&gt;</c> containing elements narrowed from the source vectors.</returns>
32863286
<remarks>To be added.</remarks>
32873287
</Docs>
32883288
</Member>
@@ -3319,8 +3319,8 @@
33193319
<Docs>
33203320
<param name="source1">The first source vector, whose elements become the lower-index elements of the return value.</param>
33213321
<param name="source2">The second source vector, whose elements become the higher-index elements of the return value.</param>
3322-
<summary>Narrows two <see cref="T:System.Numerics.Vector{System.UInt64}" /> instances into one <see cref="T:System.Numerics.Vector{System.UInt32}" />.</summary>
3323-
<returns>A <see cref="T:System.Numerics.Vector{System.UInt32}" /> containing elements narrowed from the source vectors.</returns>
3322+
<summary>Narrows two <c>Vector&lt;UInt64&gt;</c> instances into one <c>Vector&lt;UInt32&gt;</c>.</summary>
3323+
<returns>A <c>Vector&lt;UInt32&gt;</c> containing elements narrowed from the source vectors.</returns>
33243324
<remarks>To be added.</remarks>
33253325
</Docs>
33263326
</Member>
@@ -3549,7 +3549,7 @@
35493549
<param name="source">The source vector whose elements are widened into the outputs.</param>
35503550
<param name="dest1">The first output vector, whose elements will contain the widened elements from lower indices in the source vector.</param>
35513551
<param name="dest2">The second output vector, whose elements will contain the widened elements from higher indices in the source vector.</param>
3552-
<summary>Widens a <see cref="T:System.Numerics.Vector{System.Byte}" /> into two <see cref="T:System.Numerics.Vector{System.UInt16}" /> instances.</summary>
3552+
<summary>Widens a <c>Vector&lt;Byte&gt;</c> into two <c>Vector&lt;UInt16&gt;</c> instances.</summary>
35533553
<remarks>To be added.</remarks>
35543554
</Docs>
35553555
</Member>
@@ -3583,7 +3583,7 @@
35833583
<param name="source">The source vector whose elements are widened into the outputs.</param>
35843584
<param name="dest1">The first output vector, whose elements will contain the widened elements from lower indices in the source vector.</param>
35853585
<param name="dest2">The second output vector, whose elements will contain the widened elements from higher indices in the source vector.</param>
3586-
<summary>Widens a <see cref="T:System.Numerics.Vector{System.Int16}" /> into two <see cref="T:System.Numerics.Vector{System.Int32}" /> instances.</summary>
3586+
<summary>Widens a <c>Vector&lt;Int16&gt;</c> into two <c>Vector&lt;Int32&gt;</c> instances.</summary>
35873587
<remarks>To be added.</remarks>
35883588
</Docs>
35893589
</Member>
@@ -3617,7 +3617,7 @@
36173617
<param name="source">The source vector whose elements are widened into the outputs.</param>
36183618
<param name="dest1">The first output vector, whose elements will contain the widened elements from lower indices in the source vector.</param>
36193619
<param name="dest2">The second output vector, whose elements will contain the widened elements from higher indices in the source vector.</param>
3620-
<summary>Widens a <see cref="T:System.Numerics.Vector{System.Int32}" /> into two <see cref="T:System.Numerics.Vector{System.Int64}" /> instances.</summary>
3620+
<summary>Widens a <c>Vector&lt;Int32&gt;</c> into two <c>Vector&lt;Int64&gt;</c> instances.</summary>
36213621
<remarks>To be added.</remarks>
36223622
</Docs>
36233623
</Member>
@@ -3656,7 +3656,7 @@
36563656
<param name="source">The source vector whose elements are widened into the outputs.</param>
36573657
<param name="dest1">The first output vector, whose elements will contain the widened elements from lower indices in the source vector.</param>
36583658
<param name="dest2">The second output vector, whose elements will contain the widened elements from higher indices in the source vector.</param>
3659-
<summary>Widens a <see cref="T:System.Numerics.Vector{System.SByte}" /> into two <see cref="T:System.Numerics.Vector{System.Int16}" /> instances.</summary>
3659+
<summary>Widens a <c>Vector&lt;SByte&gt;</c> into two <c>Vector&lt;Int16&gt;</c> instances.</summary>
36603660
<remarks>To be added.</remarks>
36613661
</Docs>
36623662
</Member>
@@ -3690,7 +3690,7 @@
36903690
<param name="source">The source vector whose elements are widened into the outputs.</param>
36913691
<param name="dest1">The first output vector, whose elements will contain the widened elements from lower indices in the source vector.</param>
36923692
<param name="dest2">The second output vector, whose elements will contain the widened elements from higher indices in the source vector.</param>
3693-
<summary>Widens a <see cref="T:System.Numerics.Vector{System.Single}" /> into two <see cref="T:System.Numerics.Vector{System.Double}" /> instances.</summary>
3693+
<summary>Widens a <c>Vector&lt;Single&gt;</c> into two <c>Vector&lt;Double&gt;</c> instances.</summary>
36943694
<remarks>To be added.</remarks>
36953695
</Docs>
36963696
</Member>
@@ -3729,7 +3729,7 @@
37293729
<param name="source">The source vector whose elements are widened into the outputs.</param>
37303730
<param name="dest1">The first output vector, whose elements will contain the widened elements from lower indices in the source vector.</param>
37313731
<param name="dest2">The second output vector, whose elements will contain the widened elements from higher indices in the source vector.</param>
3732-
<summary>Widens a <see cref="T:System.Numerics.Vector{System.UInt16}" /> into two <see cref="T:System.Numerics.Vector{System.UInt32}" /> instances.</summary>
3732+
<summary>Widens a <c>Vector&lt;UInt16&gt;</c> into two <c>Vector&lt;UInt32&gt;</c> instances.</summary>
37333733
<remarks>To be added.</remarks>
37343734
</Docs>
37353735
</Member>
@@ -3768,7 +3768,7 @@
37683768
<param name="source">The source vector whose elements are widened into the outputs.</param>
37693769
<param name="dest1">The first output vector, whose elements will contain the widened elements from lower indices in the source vector.</param>
37703770
<param name="dest2">The second output vector, whose elements will contain the widened elements from higher indices in the source vector.</param>
3771-
<summary>Widens a <see cref="T:System.Numerics.Vector{System.UInt32}" /> into two <see cref="T:System.Numerics.Vector{System.UInt64}" /> instances.</summary>
3771+
<summary>Widens a <c>Vector&lt;UInt32&gt;</c> into two <c>Vector&lt;UInt64&gt;</c> instances.</summary>
37723772
<remarks>To be added.</remarks>
37733773
</Docs>
37743774
</Member>

xml/System.Reflection/MetadataLoadContext.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ Note that the behavior of this method matches the behavior of the <xref:System.R
285285
<Parameter Name="assembly" Type="System.Byte[]" />
286286
</Parameters>
287287
<Docs>
288-
<param name="assembly">A <see cref="T:System.Byte[]" /> holding an assembly.</param>
288+
<param name="assembly">A byte array holding an assembly.</param>
289289
<summary>Loads an assembly from a byte array and binds its assembly name to it in the <see cref="T:System.Reflection.MetadataLoadContext" />. If a prior assembly with the same name was already loaded into the <see cref="T:System.Reflection.MetadataLoadContext" />, the prior assembly will be returned.</summary>
290290
<returns>An <see cref="T:System.Reflection.Assembly" /> instance.</returns>
291291
<remarks>To be added.</remarks>

xml/System.Resources.Extensions/PreserializedResourceWriter.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
</Parameters>
125125
<Docs>
126126
<param name="name">The resource name.</param>
127-
<param name="value">A byte array containing the value of the resource in <see cref="T:System.Byte[]" /> form understood by <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />.</param>
127+
<param name="value">A byte array containing the value of the resource in <c>Byte&#91;&#93;</c> form understood by <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />.</param>
128128
<param name="typeName">The optional assembly qualified type name of the resource. The default value is <see langword="null" />.</param>
129129
<summary>Adds a resource of the specified type, represented by a byte array, that will be passed to <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> when reading the resource.</summary>
130130
<remarks>To be added.</remarks>

0 commit comments

Comments
 (0)