Merge pull request #2662 from riri-yu/patch-1

Fix a small grammar mistake
This commit is contained in:
Ilya Kantor 2021-07-22 23:22:11 +03:00 committed by GitHub
commit 237d883f1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -377,7 +377,7 @@ label: {
}
```
...Although, 99.9% of the time `break` used is inside loops, as we've seen in the examples above.
...Although, 99.9% of the time `break` is used inside loops, as we've seen in the examples above.
A `continue` is only possible from inside a loop.
````