Skip to content

Fix wording around BitIncrement and BitDecrement #11315

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions xml/System/Double.xml
Original file line number Diff line number Diff line change
Expand Up @@ -872,8 +872,8 @@ This computes `arctan(x) / π` in the interval `[-0.5, +0.5]`.
</Parameters>
<Docs>
<param name="x">The value to be bitwise decremented.</param>
<summary>Decrements a value to the smallest value that compares less than a given value.</summary>
<returns>The smallest value that compares less than <paramref name="x" />.</returns>
<summary>Returns the largest value that compares less than a specified value.</summary>
<returns>The largest value that compares less than <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.BitDecrement(`0)" />
</Docs>
Expand Down Expand Up @@ -910,7 +910,7 @@ This computes `arctan(x) / π` in the interval `[-0.5, +0.5]`.
</Parameters>
<Docs>
<param name="x">The value to be bitwise incremented.</param>
<summary>Increments a value to the smallest value that compares greater than a given value.</summary>
<summary>Returns the smallest value that compares greater than a specified value.</summary>
<returns>The smallest value that compares greater than <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.BitIncrement(`0)" />
Expand Down
6 changes: 3 additions & 3 deletions xml/System/Single.xml
Original file line number Diff line number Diff line change
Expand Up @@ -870,8 +870,8 @@ This computes `arctan(x) / π` in the interval `[-0.5, +0.5]`.
</Parameters>
<Docs>
<param name="x">The value to be bitwise decremented.</param>
<summary>Decrements a value to the smallest value that compares less than a given value.</summary>
<returns>The smallest value that compares less than <paramref name="x" />.</returns>
<summary>Returns the largest value that compares less than a specified value.</summary>
<returns>The largest value that compares less than <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.BitDecrement(`0)" />
</Docs>
Expand Down Expand Up @@ -908,7 +908,7 @@ This computes `arctan(x) / π` in the interval `[-0.5, +0.5]`.
</Parameters>
<Docs>
<param name="x">The value to be bitwise incremented.</param>
<summary>Increments a value to the smallest value that compares greater than a given value.</summary>
<summary>Returns the smallest value that compares greater than a specified value.</summary>
<returns>The smallest value that compares greater than <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.BitIncrement(`0)" />
Expand Down