fix doctests in libcore

This commit is contained in:
Michael Hewson 2017-12-23 12:36:04 -05:00
parent 056370167a
commit 60e6629045
1 changed files with 2 additions and 2 deletions

View File

@ -1833,7 +1833,7 @@ impl<T: ?Sized> *mut T {
///
/// # #[allow(dead_code)]
/// unsafe fn from_buf_raw<T: Copy>(ptr: *const T, elts: usize) -> Vec<T> {
/// let mut dst = Vec::with_capacity(elts);
/// let mut dst: Vec<T> = Vec::with_capacity(elts);
/// dst.set_len(elts);
/// dst.as_mut_ptr().copy_from(ptr, elts);
/// dst
@ -1872,7 +1872,7 @@ impl<T: ?Sized> *mut T {
///
/// # #[allow(dead_code)]
/// unsafe fn from_buf_raw<T: Copy>(ptr: *const T, elts: usize) -> Vec<T> {
/// let mut dst = Vec::with_capacity(elts);
/// let mut dst: Vec<T> = Vec::with_capacity(elts);
/// dst.set_len(elts);
/// dst.as_mut_ptr().copy_from_nonoverlapping(ptr, elts);
/// dst