diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index 3dfd10f0916..c941629b871 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -71,7 +71,7 @@ use core::raw::{TraitObject}; /// The following two examples are equivalent: /// /// ``` -/// #![feature(box_heap)] +/// # #![feature(box_heap)] /// #![feature(box_syntax)] /// use std::boxed::HEAP; /// @@ -162,7 +162,7 @@ impl Box { /// /// # Examples /// ``` -/// #![feature(box_raw)] +/// # #![feature(box_raw)] /// use std::boxed; /// /// let seventeen = Box::new(17u32);