diff options
| author | Sean Prashad <S.Prashad@outlook.com> | 2017-10-01 12:15:05 -0400 |
|---|---|---|
| committer | Sean Prashad <S.Prashad@outlook.com> | 2017-10-01 12:15:05 -0400 |
| commit | 1ebc7bba796c74c6cf21092597e3ff8c174741a2 (patch) | |
| tree | 76b0c90d50136304e897969711ecc63b9cfccade /src/liballoc | |
| parent | 0defa208dcb5a0f3c1ca5bc4df7acf52759ece44 (diff) | |
| download | rust-1ebc7bba796c74c6cf21092597e3ff8c174741a2.tar.gz rust-1ebc7bba796c74c6cf21092597e3ff8c174741a2.zip | |
Resolves #36284 - vec.rs documentation
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/vec.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs index 725d3e15f4a..861291194f3 100644 --- a/src/liballoc/vec.rs +++ b/src/liballoc/vec.rs @@ -507,13 +507,9 @@ impl<T> Vec<T> { /// Converts the vector into [`Box<[T]>`][owned slice]. /// - /// Note that this will drop any excess capacity. Calling this and - /// converting back to a vector with [`into_vec`] is equivalent to calling - /// [`shrink_to_fit`]. + /// Note that this will drop any excess capacity. /// /// [owned slice]: ../../std/boxed/struct.Box.html - /// [`into_vec`]: ../../std/primitive.slice.html#method.into_vec - /// [`shrink_to_fit`]: #method.shrink_to_fit /// /// # Examples /// |
