Spelling fix for "because"

This commit is contained in:
Craig M. Brandenburg 2016-03-06 08:37:30 -07:00
parent 80922a7ad8
commit b517256941

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]...