diff options
| -rw-r--r-- | rust.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/rust.html.markdown b/rust.html.markdown index 421124be..11483eef 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<T>`.      let s_slice: &str = &s; | 
