Below instead of Above

This commit is contained in:
Norman 2017-11-05 15:15:23 +02:00 committed by GitHub
parent b2559f4d39
commit 64b077fb49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -239,7 +239,7 @@ The `continue` directive is a "lighter version" of `break`. It doesn't stop the
We can use it if we're done on the current iteration and would like to move on to the next.
The loop above uses `continue` to output only odd values:
The loop below uses `continue` to output only odd values:
```js run no-beautify
for (let i = 0; i < 10; i++) {