]> git.lizzy.rs Git - rust.git/commitdiff
reference: remove stray comma
authorTshepang Lekhonkhobe <tshepang@gmail.com>
Sun, 5 Jul 2015 15:58:46 +0000 (17:58 +0200)
committerTshepang Lekhonkhobe <tshepang@gmail.com>
Sun, 5 Jul 2015 15:58:46 +0000 (17:58 +0200)
src/doc/reference.md

index a3e13acccae28acf9c5cb5de71ceea4f55099528..49718ca17ea8aae9bd2546684ccb6229b0e46021 100644 (file)
@@ -3355,7 +3355,7 @@ let s: &[i32] = &vec[..];
 As you can see, the `vec!` macro allows you to create a `Vec<T>` easily. The
 `vec!` macro is also part of the standard library, rather than the language.
 
-All in-bounds elements of arrays, and slices are always initialized, and access
+All in-bounds elements of arrays and slices are always initialized, and access
 to an array or slice is always bounds-checked.
 
 ### Structure types