diff --git a/library/core/src/option.rs b/library/core/src/option.rs index a8a88df1320..6d078fb0a54 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -669,7 +669,6 @@ pub fn and_then Option>(self, f: F) -> Option { /// assert_eq!(Some(4).filter(is_even), Some(4)); /// ``` /// - /// [`Iterator::filter()`]: Iterator::filter #[inline] #[stable(feature = "option_filter", since = "1.27.0")] pub fn filter bool>(self, predicate: P) -> Self {