Auto merge of #32081 - cmbrandenburg:spell_fix, r=apasel422

This commit is contained in:
bors 2016-03-07 15:45:11 +00:00
commit 388ccda455
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ mod prim_slice { }
/// // story has nineteen bytes
/// assert_eq!(19, len);
///
/// // We can re-build a str out of ptr and len. This is all unsafe becuase
/// // We can re-build a str out of ptr and len. This is all unsafe because
/// // we are responsible for making sure the two components are valid:
/// let s = unsafe {
/// // First, we build a &[u8]...