Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Genevieve Warren <[email protected]>
  • Loading branch information
carlossanlop and gewarren authored Sep 15, 2022
commit 2efde19ed8d75903d3d2faf709d8e8c7c9d8008f
12 changes: 6 additions & 6 deletions xml/System.Numerics/BigInteger.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,7 @@
</Parameters>
<Docs>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value which is used to create the instance of <typeparamref name="TSelf" />.</param>
<param name="value">The value that's used to create the instance of <typeparamref name="TSelf" />.</param>
<summary>Creates an instance of the current type from a value, saturating any values that fall outside the representable range of the current type.</summary>
<returns>An instance of <typeparamref name="TSelf" /> created from <paramref name="value" />, saturating if <paramref name="value" /> falls outside the representable range of <typeparamref name="TSelf" />.</returns>
<remarks>To be added.</remarks>
Expand Down Expand Up @@ -1572,7 +1572,7 @@
</Parameters>
<Docs>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value which is used to create the instance of <typeparamref name="TSelf" />.</param>
<param name="value">The value that's used to create the instance of <typeparamref name="TSelf" />.</param>
<summary>Creates an instance of the current type from a value, truncating any values that fall outside the representable range of the current type.</summary>
<returns>An instance of <typeparamref name="TSelf" /> created from <paramref name="value" />, truncating if <paramref name="value" /> falls outside the representable range of <typeparamref name="TSelf" />.</returns>
<remarks>To be added.</remarks>
Expand Down Expand Up @@ -1685,8 +1685,8 @@
<Parameter Name="right" Type="System.Numerics.BigInteger" Index="1" FrameworkAlternate="net-7.0" />
</Parameters>
<Docs>
<param name="left">The value which <paramref name="right" /> divides.</param>
<param name="right">The value which divides <paramref name="left" />.</param>
<param name="left">The value that <paramref name="right" /> divides.</param>
<param name="right">The value that divides <paramref name="left" />.</param>
<summary>Computes the quotient and remainder of two values.</summary>
<returns>The quotient and remainder of <paramref name="left" /> divided-by <paramref name="right" />.</returns>
<remarks>To be added.</remarks>
Expand Down Expand Up @@ -8979,7 +8979,7 @@ If `provider` is `null`, the <xref:System.Globalization.NumberFormatInfo> object
<Parameter Name="rotateAmount" Type="System.Int32" Index="1" FrameworkAlternate="net-7.0" />
</Parameters>
<Docs>
<param name="value">The value which is rotated left by <paramref name="rotateAmount" />.</param>
<param name="value">The value that's rotated left by <paramref name="rotateAmount" />.</param>
<param name="rotateAmount">The amount by which <paramref name="value" /> is rotated left.</param>
<summary>Rotates a value left by a given amount.</summary>
<returns>The result of rotating <paramref name="value" /> left by <paramref name="rotateAmount" />.</returns>
Expand Down Expand Up @@ -9016,7 +9016,7 @@ If `provider` is `null`, the <xref:System.Globalization.NumberFormatInfo> object
<Parameter Name="rotateAmount" Type="System.Int32" Index="1" FrameworkAlternate="net-7.0" />
</Parameters>
<Docs>
<param name="value">The value which is rotated right by <paramref name="rotateAmount" />.</param>
<param name="value">The value that's rotated right by <paramref name="rotateAmount" />.</param>
<param name="rotateAmount">The amount by which <paramref name="value" /> is rotated right.</param>
<summary>Rotates a value right by a given amount.</summary>
<returns>The result of rotating <paramref name="value" /> right by <paramref name="rotateAmount" />.</returns>
Expand Down