diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-01-29 09:34:51 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-29 09:34:51 +0900 |
| commit | 8d3273cdba51bd15532488056efea2ea43007344 (patch) | |
| tree | 90d3c9cb214aae212ec5bdc933ad6804cac0c617 /src/liballoc | |
| parent | 9c1244d6a1949076d1892586a417d9c2f8ec9dfc (diff) | |
| parent | 074cfcbf2d5fcddfc44f4a30ec096d01868176bd (diff) | |
| download | rust-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.rs | 2 |
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 |
