File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -99,9 +99,9 @@ mod mut_ptr;
9999/// dropped normally.
100100///
101101/// * It is friendlier to the optimizer to do this over [`ptr::read`] when
102- /// dropping manually allocated memory (e.g., when writing Box/Rc/Vec),
103- /// as the compiler doesn't need to prove that it's sound to elide the
104- /// copy.
102+ /// dropping manually allocated memory (e.g., in the implementations of
103+ /// `Box`/`Rc`/`Vec`), as the compiler doesn't need to prove that it's
104+ /// sound to elide the copy.
105105///
106106/// * It can be used to drop [pinned] data when `T` is not `repr(packed)`
107107/// (pinned data must not be moved before it is dropped).
Original file line number Diff line number Diff line change 11//! This module provides constants which are specific to the implementation
22//! of the `f32` floating point data type.
33//!
4- //! *[See also the `f32` primitive type](../../std/ primitive. f32.html ).*
4+ //! *[See also the `f32` primitive type](primitive@ f32).*
55//!
66//! Mathematically significant numbers are provided in the `consts` sub-module.
77//!
Original file line number Diff line number Diff line change 11//! This module provides constants which are specific to the implementation
22//! of the `f64` floating point data type.
33//!
4- //! *[See also the `f64` primitive type](../../std/ primitive. f64.html ).*
4+ //! *[See also the `f64` primitive type](primitive@ f64).*
55//!
66//! Mathematically significant numbers are provided in the `consts` sub-module.
77//!
You can’t perform that action at this time.
0 commit comments