Merge pull request #2509 from T1mL3arn/patch-1

Fix little formatting typo in 1.2.13 (loops)
This commit is contained in:
Ilya Kantor 2021-03-13 01:43:06 +03:00 committed by GitHub
commit e0f41ea41b
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. 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: A *label* is an identifier with a colon before a loop:
```js ```js