about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-07-13 10:53:14 +0000
committerbors <bors@rust-lang.org>2015-07-13 10:53:14 +0000
commitedf29a710218a0c7037f064e8823b304541be124 (patch)
treef52cd9f284f465b1e716d91f92cfb0058f37e756 /src
parenta16a4173c96a669412b3740dd7acba7d41b66b39 (diff)
parent5f8b1fadb8824e151df2b859a2c47af33d931464 (diff)
downloadrust-edf29a710218a0c7037f064e8823b304541be124.tar.gz
rust-edf29a710218a0c7037f064e8823b304541be124.zip
Auto merge of #26999 - rick68:patch-13, r=Gankro
Reverse PR `#26944 `, symbol `#` are actually as intended.
Diffstat (limited to 'src')
-rw-r--r--src/liballoc/boxed.rs4
1 files 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 @@ 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<T : ?Sized> Box<T> {
 ///
 /// # Examples
 /// ```
-/// #![feature(box_raw)]
+/// # #![feature(box_raw)]
 /// use std::boxed;
 ///
 /// let seventeen = Box::new(17u32);