Skip to content

Commit

Permalink
Intra doc link-ify a reference to a function
Browse files Browse the repository at this point in the history
  • Loading branch information
est31 committed Jun 1, 2021
1 parent d209114 commit a0228d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions library/core/src/num/f32.rs
Expand Up @@ -727,8 +727,8 @@ impl f32 {
///
/// This is currently identical to `transmute::<f32, u32>(self)` on all platforms.
///
/// See `from_bits` for some discussion of the portability of this operation
/// (there are almost no issues).
/// See [`from_bits`](Self::from_bits) for some discussion of the
/// portability of this operation (there are almost no issues).
///
/// Note that this function is distinct from `as` casting, which attempts to
/// preserve the *numeric* value, and not the bitwise value.
Expand Down
4 changes: 2 additions & 2 deletions library/core/src/num/f64.rs
Expand Up @@ -741,8 +741,8 @@ impl f64 {
///
/// This is currently identical to `transmute::<f64, u64>(self)` on all platforms.
///
/// See `from_bits` for some discussion of the portability of this operation
/// (there are almost no issues).
/// See [`from_bits`](Self::from_bits) for some discussion of the
/// portability of this operation (there are almost no issues).
///
/// Note that this function is distinct from `as` casting, which attempts to
/// preserve the *numeric* value, and not the bitwise value.
Expand Down

0 comments on commit a0228d9

Please sign in to comment.