about summary refs log tree commit diff
path: root/library/alloc/src/vec
diff options
context:
space:
mode:
authorIvan Tham <pickfire@riseup.net>2021-01-21 13:18:12 +0800
committerGitHub <noreply@github.com>2021-01-21 13:18:12 +0800
commit9844d9ee97f27f3d603f633e64bd03e1cc14e55b (patch)
tree8ef731aa29a874391620c03fc027b0413e6e3998 /library/alloc/src/vec
parent9f338e18afd865e776d8f8cd7c763572a9a03ddf (diff)
downloadrust-9844d9ee97f27f3d603f633e64bd03e1cc14e55b.tar.gz
rust-9844d9ee97f27f3d603f633e64bd03e1cc14e55b.zip
Remove link to current section
Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
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: