Skip to content

Commit 9bac577

Browse files
committed
Grammar tweak.
1 parent 68209c3 commit 9bac577

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/core/src/option.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@
8383
//! * [`ptr::NonNull<U>`]
8484
//! * `#[repr(transparent)]` struct around one of the types in this list.
8585
//!
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).
86+
//! It is further guaranteed that, for the cases above, one can
87+
//! [`mem::transmute`] from all valid values of `T` to `Option<T>` and
88+
//! from `Some::<T>(_)` to `T` (but transmuting `None::<T>` to `T`
89+
//! is undefined behaviour).
9090
//!
9191
//! # Examples
9292
//!

0 commit comments

Comments
 (0)