summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamelid <37223377+camelid@users.noreply.github.com>2020-08-15 09:52:35 -0700
committerGitHub <noreply@github.com>2020-08-15 09:52:35 -0700
commit8227b3b0b26be72874321fd2f7f416f0d5447737 (patch)
treefcb2217a0fb5711b898665e84b5efa38744e135e
parentb02c4049cb629437b4363b76816542f0b5fba337 (diff)
downloadrust-8227b3b0b26be72874321fd2f7f416f0d5447737.tar.gz
Remove unnecessary intra-doc link
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
-rw-r--r--library/core/src/option.rs1
1 files changed, 0 insertions, 1 deletions
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 @@ impl<T> Option<T> {
/// 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<P: FnOnce(&T) -> bool>(self, predicate: P) -> Self {