From 5f8b1fadb8824e151df2b859a2c47af33d931464 Mon Sep 17 00:00:00 2001 From: Wei-Ming Yang Date: Mon, 13 Jul 2015 06:43:54 +0800 Subject: [PATCH] Update boxed.rs Reverse PR `#26944 `, symbol `#` are actually as intended. --- src/liballoc/boxed.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.44.0