diff options
| author | Pedro de Brito <ped.de.brito@gmail.com> | 2020-01-28 07:59:07 +0100 |
|---|---|---|
| committer | Pedro de Brito <ped.de.brito@gmail.com> | 2020-01-28 07:59:07 +0100 |
| commit | 074cfcbf2d5fcddfc44f4a30ec096d01868176bd (patch) | |
| tree | 3bbe93bd93c9943394690eed14923b000ff8ee06 /src/liballoc/vec.rs | |
| parent | 67fae2241ba7d07f455754dcca2c90327b16c098 (diff) | |
| download | rust-074cfcbf2d5fcddfc44f4a30ec096d01868176bd.tar.gz rust-074cfcbf2d5fcddfc44f4a30ec096d01868176bd.zip | |
fix: typo in vec.rs
Diffstat (limited to 'src/liballoc/vec.rs')
| -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 |
