Skip to content

Fixed incorrect data type parameter info #3749

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 2 commits into from
Mar 2, 2020
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
4 changes: 2 additions & 2 deletions xml/System/Math.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5345,8 +5345,8 @@ The following example demonstrates how to use the <xref:System.Math.Round%28Syst
<Parameter Name="n" Type="System.Int32" Index="1" FrameworkAlternate="netcore-3.0;netcore-3.1" />
</Parameters>
<Docs>
<param name="x">A single-precision floating-point number that specifies the base value.</param>
<param name="n">A single-precision floating-point number that specifies the power.</param>
<param name="x">A double-precision floating-point number that specifies the base value.</param>
<param name="n">A 32bit integer that specifies the power.</param>
<summary>Returns x * 2^n computed efficiently.</summary>
<returns>x * 2^n computed efficiently.</returns>
<remarks>
Expand Down