From 25097023141ade95d0eedf192ac8eeacc3f67d5c Mon Sep 17 00:00:00 2001 From: Wei-Ming Yang Date: Sat, 11 Jul 2015 03:50:32 +0800 Subject: [PATCH] Update boxed.rs fix typos --- 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 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);