From b02c4049cb629437b4363b76816542f0b5fba337 Mon Sep 17 00:00:00 2001 From: Camelid <37223377+camelid@users.noreply.github.com> Date: Sat, 15 Aug 2020 09:31:14 -0700 Subject: [PATCH] Fix link Intra-doc links don't work yet in this case: #74489 --- library/core/src/option.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/core/src/option.rs b/library/core/src/option.rs index 54375e3fdd6..a8a88df1320 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -1501,6 +1501,8 @@ unsafe impl TrustedLen for IterMut<'_, A> {} /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none. /// /// This `struct` is created by the [`Option::into_iter`] function. +/// +/// [`Option::into_iter`]: enum.Option.html#method.into_iter #[derive(Clone, Debug)] #[stable(feature = "rust1", since = "1.0.0")] pub struct IntoIter {