Rollup merge of #31344 - steveklabnik:gh31334, r=alexcrichton

Fixes #31334

This is just a quicker fix for this issue; since I'm working on the next draft of the book, I don't want to put a huuuge amount of work into improving it here.
This commit is contained in:
Steve Klabnik 2016-02-02 00:32:19 -05:00
commit 9eb417b17f

View File

@ -125,7 +125,8 @@ Don't forget to add the parentheses around the range.
#### On iterators:
```rust
# let lines = "hello\nworld".lines();
let lines = "hello\nworld".lines();
for (linenumber, line) in lines.enumerate() {
println!("{}: {}", linenumber, line);
}
@ -134,10 +135,8 @@ for (linenumber, line) in lines.enumerate() {
Outputs:
```text
0: Content of line one
1: Content of line two
2: Content of line three
3: Content of line four
0: hello
1: world
```
## Ending iteration early