Auto merge of #29142 - liigo:patch-6, r=alexcrichton

https://github.com/rust-lang/rust/blob/master/src/libcore/iter.rs#L1541

r? @alexcrichton
This commit is contained in:
bors 2015-10-18 17:17:56 +00:00
commit 3dc2aeef46

View File

@ -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