diff options
| -rw-r--r-- | src/libcore/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index afd399bc5d6..f9dc65b95aa 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -209,7 +209,7 @@ //! interesting implementation of [`IntoIterator`]: //! //! ```ignore -//! impl<I> IntoIterator for I where I: Iterator +//! impl<I: Iterator> IntoIterator for I //! ``` //! //! In other words, all [`Iterator`]s implement [`IntoIterator`], by just |
