Rollup merge of #26944 - rick68:patch-11, r=brson

fix typos
This commit is contained in:
Manish Goregaokar 2015-07-11 18:40:13 +05:30
commit 25b14375b7

View file

@ -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);