diff options
| author | bors <bors@rust-lang.org> | 2015-10-18 17:17:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-10-18 17:17:56 +0000 |
| commit | 3dc2aeef4618a6e306cfedf7e670c98922ad668e (patch) | |
| tree | 7708231fe28a6cfbfe59001aab35a787d138cee3 /src/libcore | |
| parent | 140e79385494da83f5a36f8fefa001b2180fa541 (diff) | |
| parent | 6ec807c220cb1030203fad96f394adb91a10f837 (diff) | |
| download | rust-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.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 |
