1
Fork 0

doc: that suffix serves as mere distraction

This commit is contained in:
Tshepang Lekhonkhobe 2016-01-14 21:08:15 +02:00
parent 02fbf31fb2
commit f7fb0af729

View file

@ -266,7 +266,7 @@ impl<T: ?Sized> Box<T> {
/// # Examples /// # Examples
/// ///
/// ``` /// ```
/// let seventeen = Box::new(17u32); /// let seventeen = Box::new(17);
/// let raw = Box::into_raw(seventeen); /// let raw = Box::into_raw(seventeen);
/// let boxed_again = unsafe { Box::from_raw(raw) }; /// let boxed_again = unsafe { Box::from_raw(raw) };
/// ``` /// ```