summaryrefslogtreecommitdiff
path: root/exercises/013_while3.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 18:56:08 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 18:56:08 +0100
commit4500fba8b3df01810fe6a89caf6c767ab4aaae73 (patch)
tree473e812320a8cd82670c1c6937bf3706df87c964 /exercises/013_while3.zig
parent178fd9cef35b5356b9eeb75dcf45d72b1136352f (diff)
parent2e4c7a2310152d175391d3844f4d794062a9b70a (diff)
Merge branch 'main' into fix-zig-build-error
Diffstat (limited to 'exercises/013_while3.zig')
-rw-r--r--exercises/013_while3.zig4
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");