mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 07:20:20 +08:00
Fix a typo
This commit is contained in:
parent
99421b09da
commit
334a040a1b
@ -1209,7 +1209,7 @@ This gets rid of a lot of nesting that would be necessary if we used `loop`,
|
||||
`if`, `else`, and `break`, and it's more clear. While a condition holds, run
|
||||
this code; otherwise, exit the loop.
|
||||
|
||||
#### Looping Though a Collection with `for`
|
||||
#### Looping Through a Collection with `for`
|
||||
|
||||
We could use this `while` construct to loop over the elements of a collection,
|
||||
like an array. For example:
|
||||
|
@ -314,7 +314,7 @@ This gets rid of a lot of nesting that would be necessary if we used `loop`,
|
||||
`if`, `else`, and `break`, and it's more clear. While a condition holds, run
|
||||
this code; otherwise, exit the loop.
|
||||
|
||||
#### Looping Though a Collection with `for`
|
||||
#### Looping Through a Collection with `for`
|
||||
|
||||
We could use this `while` construct to loop over the elements of a collection,
|
||||
like an array. For example:
|
||||
|
Loading…
Reference in New Issue
Block a user