summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-07-05 17:58:46 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-07-05 17:58:46 +0200
commite08bb7f54c12d9c74b63483ddc8ec900df7f6e41 (patch)
tree840621b5f5841f6cb6239338f4d4979953c5c18c /src/doc/reference.md
parent912ab64a0de2c121a1c9f10bb1dbe75983b78c73 (diff)
downloadrust-e08bb7f54c12d9c74b63483ddc8ec900df7f6e41.tar.gz
rust-e08bb7f54c12d9c74b63483ddc8ec900df7f6e41.zip
reference: remove stray comma
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index a3e13acccae..49718ca17ea 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -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