Update boxed.rs

Reverse PR `#26944 `, symbol `#` are actually as intended.
This commit is contained in:
Wei-Ming Yang
2015-07-13 06:43:54 +08:00
parent adcae006d2
commit 5f8b1fadb8

View File

@@ -71,7 +71,7 @@ use core::raw::{TraitObject};
/// The following two examples are equivalent: /// The following two examples are equivalent:
/// ///
/// ``` /// ```
/// #![feature(box_heap)] /// # #![feature(box_heap)]
/// #![feature(box_syntax)] /// #![feature(box_syntax)]
/// use std::boxed::HEAP; /// use std::boxed::HEAP;
/// ///
@@ -162,7 +162,7 @@ impl<T : ?Sized> Box<T> {
/// ///
/// # Examples /// # Examples
/// ``` /// ```
/// #![feature(box_raw)] /// # #![feature(box_raw)]
/// use std::boxed; /// use std::boxed;
/// ///
/// let seventeen = Box::new(17u32); /// let seventeen = Box::new(17u32);