From 774c75c31e0ce61f9a758097a29831026d063da2 Mon Sep 17 00:00:00 2001 From: Christoph Wolf <52244643+ChristoWolf@users.noreply.github.com> Date: Wed, 24 Aug 2022 22:08:23 +0200 Subject: [PATCH] Fixed minor typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bcae032..338e08b 100644 --- a/README.md +++ b/README.md @@ -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.