From f7a6f0cae3f6850ad84b8fa6ba6b9f06ae94c27d Mon Sep 17 00:00:00 2001 From: C Date: Sat, 5 Dec 2020 13:47:27 +0000 Subject: [PATCH] docs: fixing references --- library/alloc/src/vec/into_iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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