From: Wei-Ming Yang Date: Sun, 12 Jul 2015 22:43:54 +0000 (+0800) Subject: Update boxed.rs X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=5f8b1fadb8824e151df2b859a2c47af33d931464;p=rust.git Update boxed.rs Reverse PR `#26944 `, symbol `#` are actually as intended. --- 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 @@ /// The following two examples are equivalent: /// /// ``` -/// #![feature(box_heap)] +/// # #![feature(box_heap)] /// #![feature(box_syntax)] /// use std::boxed::HEAP; /// @@ -162,7 +162,7 @@ pub fn into_raw(b: Box) -> *mut T { /// /// # Examples /// ``` -/// #![feature(box_raw)] +/// # #![feature(box_raw)] /// use std::boxed; /// /// let seventeen = Box::new(17u32);