diff options
| author | Paul Ebose <pebose@proton.me> | 2026-02-27 04:07:06 +0100 |
|---|---|---|
| committer | Paul Ebose <pebose@proton.me> | 2026-02-27 04:07:06 +0100 |
| commit | 93aa733d33afe55fc8c40037c2cb46380e1521c8 (patch) | |
| tree | 8b59e361171e5f19368b73096a964757be004d8f | |
| parent | 3ecaa34271da0c0c41926ff604f9419e0b492bb3 (diff) | |
improve comment on continue expression behavior
| -rw-r--r-- | exercises/013_while3.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/013_while3.zig b/exercises/013_while3.zig index 4cccf62..52d5ebd 100644 --- a/exercises/013_while3.zig +++ b/exercises/013_while3.zig @@ -11,8 +11,8 @@ // // } // -// The "continue expression" executes every time the loop restarts -// whether the "continue" statement happens or not. +// The "continue expression" executes every single time the loop restarts, +// even when a `continue` statement skips the rest of the loop body. // const std = @import("std"); |
