We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68209c3 commit 9bac577Copy full SHA for 9bac577
library/core/src/option.rs
@@ -83,10 +83,10 @@
83
//! * [`ptr::NonNull<U>`]
84
//! * `#[repr(transparent)]` struct around one of the types in this list.
85
//!
86
-//! For the above cases, it is guaranteed that one can [`mem::transmute`]
87
-//! from all valid values of `T` to `Option<T>` and from
88
-//! `Some::<T>(_)` to `T` (but transmuting `None::<T>` to `T` is undefined
89
-//! behaviour).
+//! It is further guaranteed that, for the cases above, one can
+//! [`mem::transmute`] from all valid values of `T` to `Option<T>` and
+//! from `Some::<T>(_)` to `T` (but transmuting `None::<T>` to `T`
+//! is undefined behaviour).
90
91
//! # Examples
92
0 commit comments