mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-22 17:37:12 +08:00
Fixed minor typo
This commit is contained in:
parent
dd68cb7780
commit
774c75c31e
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ To ensure predictable outputs when using maps, remember that a map data structur
|
|||
* Doesn’t have a deterministic iteration order
|
||||
* Doesn’t guarantee that an element added during an iteration will be produced during this iteration
|
||||
|
||||
#### Ignoring how the `break` statement work (#34)
|
||||
#### Ignoring how the `break` statement works (#34)
|
||||
|
||||
Using `break` or `continue` with a label enforces breaking a specific statement. This can be helpful with `switch` or `select` statements inside loops.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue