File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1526,22 +1526,22 @@ extern "rust-intrinsic" {
1526
1526
/// Returns the minimum of two `f32` values.
1527
1527
///
1528
1528
/// The stabilized version of this intrinsic is
1529
- /// [`std::f32::min`](../../std/primitive. f32.html#method. min)
1529
+ /// [`std::f32::min`](f32:: min)
1530
1530
pub fn minnumf32 ( x : f32 , y : f32 ) -> f32 ;
1531
1531
/// Returns the minimum of two `f64` values.
1532
1532
///
1533
1533
/// The stabilized version of this intrinsic is
1534
- /// [`std::f64::min`](../../std/primitive. f64.html#method. min)
1534
+ /// [`std::f64::min`](f64:: min)
1535
1535
pub fn minnumf64 ( x : f64 , y : f64 ) -> f64 ;
1536
1536
/// Returns the maximum of two `f32` values.
1537
1537
///
1538
1538
/// The stabilized version of this intrinsic is
1539
- /// [`std::f32::max`](../../std/primitive. f32.html#method. max)
1539
+ /// [`std::f32::max`](f32:: max)
1540
1540
pub fn maxnumf32 ( x : f32 , y : f32 ) -> f32 ;
1541
1541
/// Returns the maximum of two `f64` values.
1542
1542
///
1543
1543
/// The stabilized version of this intrinsic is
1544
- /// [`std::f64::max`](../../std/primitive. f64.html#method. max)
1544
+ /// [`std::f64::max`](f64:: max)
1545
1545
pub fn maxnumf64 ( x : f64 , y : f64 ) -> f64 ;
1546
1546
1547
1547
/// Copies the sign from `y` to `x` for `f32` values.
You can’t perform that action at this time.
0 commit comments