diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index c941629b871ef..3dfd10f09167b 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);