Skip to content

Commit 29c1cd6

Browse files
authored
Update maybe_uninit.rs
1 parent 9269176 commit 29c1cd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/mem/maybe_uninit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ use crate::{fmt, intrinsics, ptr, slice};
258258
/// A `MaybeUninit<T>` has no validity requirement – any sequence of bytes of the appropriate length,
259259
/// initialized to any value or uninitialized, are a valid value of `MaybeUninit<T>`.
260260
///
261-
/// Note that "round-tripping" via `MaybeUninit` does not always result in the original value.
261+
/// However, "round-tripping" via `MaybeUninit` does not always result in the original value.
262262
/// Concretely, given distinct `T` and `U` where `size_of::<T>() == size_of::<U>()`, the following
263263
/// code is not guaranteed to be sound:
264264
///

0 commit comments

Comments
 (0)