Skip to content

Commit fb7d917

Browse files
committed
Use intra-doc links for f32::* and f64::*
1 parent a929738 commit fb7d917

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/core/src/intrinsics.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1526,22 +1526,22 @@ extern "rust-intrinsic" {
15261526
/// Returns the minimum of two `f32` values.
15271527
///
15281528
/// The stabilized version of this intrinsic is
1529-
/// [`std::f32::min`](../../std/primitive.f32.html#method.min)
1529+
/// [`std::f32::min`](f32::min)
15301530
pub fn minnumf32(x: f32, y: f32) -> f32;
15311531
/// Returns the minimum of two `f64` values.
15321532
///
15331533
/// The stabilized version of this intrinsic is
1534-
/// [`std::f64::min`](../../std/primitive.f64.html#method.min)
1534+
/// [`std::f64::min`](f64::min)
15351535
pub fn minnumf64(x: f64, y: f64) -> f64;
15361536
/// Returns the maximum of two `f32` values.
15371537
///
15381538
/// The stabilized version of this intrinsic is
1539-
/// [`std::f32::max`](../../std/primitive.f32.html#method.max)
1539+
/// [`std::f32::max`](f32::max)
15401540
pub fn maxnumf32(x: f32, y: f32) -> f32;
15411541
/// Returns the maximum of two `f64` values.
15421542
///
15431543
/// The stabilized version of this intrinsic is
1544-
/// [`std::f64::max`](../../std/primitive.f64.html#method.max)
1544+
/// [`std::f64::max`](f64::max)
15451545
pub fn maxnumf64(x: f64, y: f64) -> f64;
15461546

15471547
/// Copies the sign from `y` to `x` for `f32` values.

0 commit comments

Comments
 (0)