Fix little formatting typo in 1.2.13 (loops)

This commit is contained in:
Timur 2021-03-05 12:50:25 +10:00 committed by GitHub
parent f6ae0b5a5f
commit fdcf507c1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -318,7 +318,7 @@ alert('Done!');
We need a way to stop the process if the user cancels the input.
The ordinary `break` after `input` would only break the inner loop. That's not sufficient--labels, come to the rescue!
The ordinary `break` after `input` would only break the inner loop. That's not sufficient -- labels, come to the rescue!
A *label* is an identifier with a colon before a loop:
```js