1
Fork 0

Rollup merge of #85877 - est31:intra_doc_links, r=jyn514

Intra doc link-ify a reference to a function
This commit is contained in:
Yuki Okushi 2021-06-03 14:35:34 +09:00 committed by GitHub
commit bd18686b5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -727,8 +727,8 @@ impl f32 {
/// ///
/// This is currently identical to `transmute::<f32, u32>(self)` on all platforms. /// This is currently identical to `transmute::<f32, u32>(self)` on all platforms.
/// ///
/// See `from_bits` for some discussion of the portability of this operation /// See [`from_bits`](Self::from_bits) for some discussion of the
/// (there are almost no issues). /// portability of this operation (there are almost no issues).
/// ///
/// Note that this function is distinct from `as` casting, which attempts to /// Note that this function is distinct from `as` casting, which attempts to
/// preserve the *numeric* value, and not the bitwise value. /// preserve the *numeric* value, and not the bitwise value.

View file

@ -741,8 +741,8 @@ impl f64 {
/// ///
/// This is currently identical to `transmute::<f64, u64>(self)` on all platforms. /// This is currently identical to `transmute::<f64, u64>(self)` on all platforms.
/// ///
/// See `from_bits` for some discussion of the portability of this operation /// See [`from_bits`](Self::from_bits) for some discussion of the
/// (there are almost no issues). /// portability of this operation (there are almost no issues).
/// ///
/// Note that this function is distinct from `as` casting, which attempts to /// Note that this function is distinct from `as` casting, which attempts to
/// preserve the *numeric* value, and not the bitwise value. /// preserve the *numeric* value, and not the bitwise value.