Skip to content

Commit d19306f

Browse files
committed
fix more links
1 parent 1d7877a commit d19306f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

xml/System/Math.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6594,7 +6594,6 @@ In this section:
65946594
- [Midpoint values and rounding conventions](#midpoint-values-and-rounding-conventions)
65956595
- [Rounding and precision](#rounding-and-precision)
65966596
- [Rounding and single-precision floating point values](#rounding-and-single-precision-floating-point-values)
6597-
- [Examples of individual overloads](#round-examples)
65986597

65996598
### Which method do I call?
66006599

@@ -6607,7 +6606,7 @@ You can use the following table to select an appropriate rounding method. In add
66076606
|Round a number to a specified number of fractional digits by using the rounding to nearest convention.|<xref:System.Math.Round(System.Decimal,System.Int32)><br />-or-<br /><xref:System.Math.Round(System.Double,System.Int32)>|
66086607
|Round a number to a specified number of fractional digits by using a specified rounding convention.|<xref:System.Math.Round(System.Decimal,System.Int32,System.MidpointRounding)><br />-or-<br /><xref:System.Math.Round(System.Double,System.Int32,System.MidpointRounding)>|
66096608
|Round a <xref:System.Single> value to a specified number of fractional digits by using a specified rounding convention and minimizing the loss of precision.|Convert the <xref:System.Single> to a <xref:System.Decimal> and call <xref:System.Math.Round(System.Decimal,System.Int32,System.MidpointRounding)>.|
6610-
|Round a number to a specified number of fractional digits while minimizing problems of precision in rounding midpoint values.|Call a rounding method that implements a "greater than or approximately equal to" comparison. See [Rounding and precision](#precision).|
6609+
|Round a number to a specified number of fractional digits while minimizing problems of precision in rounding midpoint values.|Call a rounding method that implements a "greater than or approximately equal to" comparison. See [Rounding and precision](#rounding-and-precision).|
66116610
|Round a fractional value to an integer that is greater than the fractional value. For example, round 3.1 to 4.|<xref:System.Math.Ceiling*>|
66126611
|Round a fractional value to an integer that is less than the fractional value. For example, round 3.9 to 3.|<xref:System.Math.Floor*>|
66136612

0 commit comments

Comments
 (0)