From e08bb7f54c12d9c74b63483ddc8ec900df7f6e41 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sun, 5 Jul 2015 17:58:46 +0200 Subject: [PATCH] reference: remove stray comma --- src/doc/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index a3e13acccae28..49718ca17ea8a 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` 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