about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-01-29 09:34:51 +0900
committerGitHub <noreply@github.com>2020-01-29 09:34:51 +0900
commit8d3273cdba51bd15532488056efea2ea43007344 (patch)
tree90d3c9cb214aae212ec5bdc933ad6804cac0c617 /src/liballoc
parent9c1244d6a1949076d1892586a417d9c2f8ec9dfc (diff)
parent074cfcbf2d5fcddfc44f4a30ec096d01868176bd (diff)
downloadrust-8d3273cdba51bd15532488056efea2ea43007344.tar.gz
rust-8d3273cdba51bd15532488056efea2ea43007344.zip
Rollup merge of #68592 - pdbrito:master, r=jonas-schievink
fix: typo in vec.rs
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index e9cbf627846..26a7812f58e 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -176,7 +176,7 @@ use crate::raw_vec::RawVec;
 /// ```
 ///
 /// In Rust, it's more common to pass slices as arguments rather than vectors
-/// when you just want to provide a read access. The same goes for [`String`] and
+/// when you just want to provide read access. The same goes for [`String`] and
 /// [`&str`].
 ///
 /// # Capacity and reallocation