about summary refs log tree commit diff
path: root/library/alloc/src/vec
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2020-12-30 15:35:02 +0000
committerGitHub <noreply@github.com>2020-12-30 15:35:02 +0000
commit16834a8f52853be76cf4a96de120042f2a4a96a2 (patch)
tree1367b5cb5dc756d3dec431b314a65b46ce916bbf /library/alloc/src/vec
parent206b2ca61ee467d65f674ab83d13a57fe15c7252 (diff)
downloadrust-16834a8f52853be76cf4a96de120042f2a4a96a2.tar.gz
rust-16834a8f52853be76cf4a96de120042f2a4a96a2.zip
Fix rustdoc link in vec/into_iter.rs.
Diffstat (limited to 'library/alloc/src/vec')
-rw-r--r--library/alloc/src/vec/into_iter.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/alloc/src/vec/into_iter.rs b/library/alloc/src/vec/into_iter.rs
index 99ecec648ad..f131d06bb18 100644
--- a/library/alloc/src/vec/into_iter.rs
+++ b/library/alloc/src/vec/into_iter.rs
@@ -10,8 +10,8 @@ use core::slice::{self};
 
 /// An iterator that moves out of a vector.
 ///
-/// This `struct` is created by the `into_iter` method on [`super::Vec`] (provided
-/// by the [`IntoIterator`] trait).
+/// This `struct` is created by the `into_iter` method on [`Vec`](super::Vec)
+/// (provided by the [`IntoIterator`] trait).
 ///
 /// # Example
 ///