about summary refs log tree commit diff
path: root/library/alloc/src/vec
diff options
context:
space:
mode:
authorC <DeveloperC@protonmail.com>2020-12-05 13:47:27 +0000
committerC <DeveloperC@protonmail.com>2020-12-29 14:03:30 +0000
commitf7a6f0cae3f6850ad84b8fa6ba6b9f06ae94c27d (patch)
tree0ffa2d70ae20f674881abfbb29068a0eea395590 /library/alloc/src/vec
parent80f10d7aa7b3e3bf9a47de6ef2a9f4439d993c48 (diff)
downloadrust-f7a6f0cae3f6850ad84b8fa6ba6b9f06ae94c27d.tar.gz
rust-f7a6f0cae3f6850ad84b8fa6ba6b9f06ae94c27d.zip
docs: fixing references
Diffstat (limited to 'library/alloc/src/vec')
-rw-r--r--library/alloc/src/vec/into_iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec/into_iter.rs b/library/alloc/src/vec/into_iter.rs
index 1788690d96b..99ecec648ad 100644
--- a/library/alloc/src/vec/into_iter.rs
+++ b/library/alloc/src/vec/into_iter.rs
@@ -10,7 +10,7 @@ use core::slice::{self};
 
 /// An iterator that moves out of a vector.
 ///
-/// This `struct` is created by the `into_iter` method on [`Vec`] (provided
+/// This `struct` is created by the `into_iter` method on [`super::Vec`] (provided
 /// by the [`IntoIterator`] trait).
 ///
 /// # Example