From aac3008d123379b7489f3ac63dd221a185ae8229 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Thu, 17 Aug 2017 18:02:01 -0400 Subject: [PATCH] Minor Iterator::filter_map description rewording. Fixes https://github.com/rust-lang/rust/issues/39294. --- src/libcore/iter/iterator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter/iterator.rs b/src/libcore/iter/iterator.rs index 2472efa14b307..7c009114afefb 100644 --- a/src/libcore/iter/iterator.rs +++ b/src/libcore/iter/iterator.rs @@ -605,7 +605,7 @@ pub trait Iterator { /// closure returns [`None`], it will try again, and call the closure on the /// next element, seeing if it will return [`Some`]. /// - /// Why `filter_map` and not just [`filter`].[`map`]? The key is in this + /// Why `filter_map` and not just [`filter`] and [`map`]? The key is in this /// part: /// /// [`filter`]: #method.filter