about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-10-18 17:17:56 +0000
committerbors <bors@rust-lang.org>2015-10-18 17:17:56 +0000
commit3dc2aeef4618a6e306cfedf7e670c98922ad668e (patch)
tree7708231fe28a6cfbfe59001aab35a787d138cee3 /src/libcore
parent140e79385494da83f5a36f8fefa001b2180fa541 (diff)
parent6ec807c220cb1030203fad96f394adb91a10f837 (diff)
downloadrust-3dc2aeef4618a6e306cfedf7e670c98922ad668e.tar.gz
rust-3dc2aeef4618a6e306cfedf7e670c98922ad668e.zip
Auto merge of #29142 - liigo:patch-6, r=alexcrichton
https://github.com/rust-lang/rust/blob/master/src/libcore/iter.rs#L1541

r? @alexcrichton 
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter.rs2
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