From 1ebc7bba796c74c6cf21092597e3ff8c174741a2 Mon Sep 17 00:00:00 2001 From: Sean Prashad Date: Sun, 1 Oct 2017 12:15:05 -0400 Subject: [PATCH] Resolves #36284 - vec.rs documentation --- src/liballoc/vec.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs index 725d3e15f4a6..861291194f36 100644 --- a/src/liballoc/vec.rs +++ b/src/liballoc/vec.rs @@ -507,13 +507,9 @@ impl Vec { /// 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 ///