Merge pull request #200 from ykomatsu/typo

Fix a typo
This commit is contained in:
Carol (Nichols || Goulding) 2016-08-18 08:50:25 -04:00 committed by GitHub
commit 9b70ed3dc3
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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: