about summary refs log tree commit diff
path: root/src/liballoc/vec.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-01-29 01:28:55 +0000
committerbors <bors@rust-lang.org>2020-01-29 01:28:55 +0000
commitd55f3e9f1da631c636b54a7c22c1caccbe4bf0db (patch)
treec8ece031d2ade32610e37f45cce8665a005b30aa /src/liballoc/vec.rs
parent3761dcd3467441f78939ccb3b341b03b6a7558d7 (diff)
parentc0df1be21e91067004bfb04e26dc34c8078e6423 (diff)
downloadrust-d55f3e9f1da631c636b54a7c22c1caccbe4bf0db.tar.gz
rust-d55f3e9f1da631c636b54a7c22c1caccbe4bf0db.zip
Auto merge of #68625 - JohnTitor:rollup-20pfcru, r=JohnTitor
Rollup of 8 pull requests

Successful merges:

 - #68289 (Don't ICE on path-collision in dep-graph)
 - #68378 (Add BTreeMap::remove_entry)
 - #68553 (Fix run button positionning in case of scrolling)
 - #68556 (rustdoc: Fix re-exporting primitive types)
 - #68582 (Add E0727 long explanation)
 - #68592 (fix: typo in vec.rs)
 - #68619 (Fix a few spelling mistakes)
 - #68620 (Update links to WASI docs in time.rs module)

Failed merges:

r? @ghost
Diffstat (limited to 'src/liballoc/vec.rs')
-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