Remove rogue I

This commit is contained in:
Jake Goulding 2015-12-16 13:25:33 -05:00
parent d4ffaf6f83
commit 936149fc25

View File

@ -1337,7 +1337,7 @@ explanatory comments for the same example:
// `for`-loops use a protocol based on the `Iterator`
// 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.
for v in &vs {
// ~ ~~~