From 9844d9ee97f27f3d603f633e64bd03e1cc14e55b Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Thu, 21 Jan 2021 13:18:12 +0800 Subject: [PATCH] Remove link to current section Co-authored-by: Mara Bos --- library/alloc/src/vec/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs index e09c3e5d23b..0f5feb4ab8d 100644 --- a/library/alloc/src/vec/mod.rs +++ b/library/alloc/src/vec/mod.rs @@ -304,8 +304,7 @@ mod spec_extend; /// /// - **uninit** represents memory that is not initialized, see [`MaybeUninit`]. /// - Note: the ABI is not stable and `Vec` makes no guarantees about its memory -/// layout (including the order of fields). See [the section about -/// guarantees](#guarantees). +/// layout (including the order of fields). /// /// `Vec` will never perform a "small optimization" where elements are actually /// stored on the stack for two reasons: