Fix a small grammar mistake

There was a tiny grammar mistake that I fixed by switched the words around.
This commit is contained in:
Yuri Lee 2021-07-04 19:07:41 +09:00 committed by GitHub
parent 2275894801
commit 16de27d116
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.
````