Skip to content

Commit 0142031

Browse files
authored
Add missing parentheses for Vector# properties (#8961)
1 parent ac913ef commit 0142031

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

xml/System.Numerics/Vector2.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ The behavior of this method changed in .NET 5. For more information, see [Behavi
15021502
</ReturnValue>
15031503
<Docs>
15041504
<summary>Gets a vector whose 2 elements are equal to one.</summary>
1505-
<value>A vector whose two elements are equal to one (that is, it returns the vector <c>(1,1)</c>.</value>
1505+
<value>A vector whose two elements are equal to one (that is, it returns the vector <c>(1,1)</c>).</value>
15061506
<remarks>To be added.</remarks>
15071507
</Docs>
15081508
</Member>
@@ -2880,7 +2880,7 @@ The behavior of this method changed in .NET 5. For more information, see [Behavi
28802880
</ReturnValue>
28812881
<Docs>
28822882
<summary>Returns a vector whose 2 elements are equal to zero.</summary>
2883-
<value>A vector whose two elements are equal to zero (that is, it returns the vector <c>(0,0)</c>.</value>
2883+
<value>A vector whose two elements are equal to zero (that is, it returns the vector <c>(0,0)</c>).</value>
28842884
<remarks>To be added.</remarks>
28852885
</Docs>
28862886
</Member>

xml/System.Numerics/Vector3.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,7 @@
15841584
</ReturnValue>
15851585
<Docs>
15861586
<summary>Gets a vector whose 3 elements are equal to one.</summary>
1587-
<value>A vector whose three elements are equal to one (that is, it returns the vector <c>(1,1,1)</c>.</value>
1587+
<value>A vector whose three elements are equal to one (that is, it returns the vector <c>(1,1,1)</c>).</value>
15881588
<remarks>To be added.</remarks>
15891589
</Docs>
15901590
</Member>
@@ -2938,7 +2938,7 @@
29382938
</ReturnValue>
29392939
<Docs>
29402940
<summary>Gets a vector whose 3 elements are equal to zero.</summary>
2941-
<value>A vector whose three elements are equal to zero (that is, it returns the vector <c>(0,0,0)</c>.</value>
2941+
<value>A vector whose three elements are equal to zero (that is, it returns the vector <c>(0,0,0)</c>).</value>
29422942
<remarks>To be added.</remarks>
29432943
</Docs>
29442944
</Member>

xml/System.Numerics/Vector4.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1597,7 +1597,7 @@ The behavior of this method changed in .NET 5. For more information, see [Behavi
15971597
<format type="text/markdown"><![CDATA[
15981598
15991599
## Remarks
1600-
A vector whose four elements are equal to one (that is, it returns the vector `(1,1,1,1)`.
1600+
A vector whose four elements are equal to one (that is, it returns the vector `(1,1,1,1)`).
16011601
16021602
]]></format>
16031603
</remarks>
@@ -3124,7 +3124,7 @@ The behavior of this method changed in .NET 5. For more information, see [Behavi
31243124
</ReturnValue>
31253125
<Docs>
31263126
<summary>Gets a vector whose 4 elements are equal to zero.</summary>
3127-
<value>A vector whose four elements are equal to zero (that is, it returns the vector <c>(0,0,0,0)</c>.</value>
3127+
<value>A vector whose four elements are equal to zero (that is, it returns the vector <c>(0,0,0,0)</c>).</value>
31283128
<remarks>To be added.</remarks>
31293129
</Docs>
31303130
</Member>

0 commit comments

Comments
 (0)