diff --git a/rust.html.markdown b/rust.html.markdown index 421124be80..11483eefa3 100644 --- a/rust.html.markdown +++ b/rust.html.markdown @@ -99,7 +99,7 @@ fn main() { // A string slice – an immutable view into another string // This is basically an immutable pair of pointers to a string – it doesn’t // actually contain the contents of a string, just a pointer to - // the begin and a pointer to the end of a string buffer, + // the beginning and a pointer to the end of a string buffer, // statically allocated or contained in another object (in this case, `s`). // The string slice is like a view `&[u8]` into `Vec`. let s_slice: &str = &s;