Remove unnecessary intra-doc link

Co-authored-by: Joshua Nelson <joshua@yottadb.com>
This commit is contained in:
Camelid 2020-08-15 09:52:35 -07:00 committed by GitHub
parent b02c4049cb
commit 8227b3b0b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -669,7 +669,6 @@ impl<T> Option<T> {
/// assert_eq!(Some(4).filter(is_even), Some(4)); /// assert_eq!(Some(4).filter(is_even), Some(4));
/// ``` /// ```
/// ///
/// [`Iterator::filter()`]: Iterator::filter
#[inline] #[inline]
#[stable(feature = "option_filter", since = "1.27.0")] #[stable(feature = "option_filter", since = "1.27.0")]
pub fn filter<P: FnOnce(&T) -> bool>(self, predicate: P) -> Self { pub fn filter<P: FnOnce(&T) -> bool>(self, predicate: P) -> Self {