fix doctest

This commit is contained in:
Ralf Jung 2019-02-05 17:22:46 +01:00
parent 789b4d1a4f
commit aaafc3c7fa

View File

@ -1042,7 +1042,7 @@ fn deref_mut(&mut self) -> &mut T {
/// even in unsafe code. As a consequence, 0-initializing a variable of reference
/// type causes instantaneous undefined behavior, no matter whether that reference
/// ever gets used to access memory:
/// ```rust,ignore
/// ```rust,no_run
/// use std::mem;
///
/// let x: &i32 = mem::zeroed(); // undefined behavior!
@ -1065,7 +1065,7 @@ fn deref_mut(&mut self) -> &mut T {
/// // Set it to a valid value.
/// x.set(&0);
/// // Extract the initialized data -- this is only allowed *after* properly
/// initializing `x`!
/// // initializing `x`!
/// let x = unsafe { x.into_initialized() };
/// ```
/// The compiler then knows to not optimize this code.