Rollup merge of #30419 - shepmaster:rogue-I, r=alexcrichton

r? @steveklabnik
This commit is contained in:
Steve Klabnik 2015-12-17 14:47:13 -05:00
commit 6c065b65c9

View File

@ -1337,7 +1337,7 @@ explanatory comments for the same example:
// `for`-loops use a protocol based on the `Iterator` // `for`-loops use a protocol based on the `Iterator`
// trait. Each item yielded in a `for` loop has the // trait. Each item yielded in a `for` loop has the
// type `Iterator::Item` -- that is,I `Item` is the // type `Iterator::Item` -- that is, `Item` is the
// associated type of the concrete iterator impl. // associated type of the concrete iterator impl.
for v in &vs { for v in &vs {
// ~ ~~~ // ~ ~~~