about summary refs log tree commit diff
path: root/library/alloc/src/vec
diff options
context:
space:
mode:
Diffstat (limited to 'library/alloc/src/vec')
-rw-r--r--library/alloc/src/vec/mod.rs3
1 files changed, 1 insertions, 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: