From 6ec807c220cb1030203fad96f394adb91a10f837 Mon Sep 17 00:00:00 2001 From: Liigo Zhuang Date: Sun, 18 Oct 2015 21:23:56 +0800 Subject: [PATCH] docs: change where clause to bound https://github.com/rust-lang/rust/blob/master/src/libcore/iter.rs#L1541 --- src/libcore/iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 IntoIterator for I where I: Iterator +//! impl IntoIterator for I //! ``` //! //! In other words, all [`Iterator`]s implement [`IntoIterator`], by just