summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 12:49:58 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 12:49:58 +0100
commit2e4c7a2310152d175391d3844f4d794062a9b70a (patch)
treeec3ac86d10a71d4476ec5e89e35a55cb2b8aa489 /exercises
parent0785c715321d6ebc76c75a42efd76822f9a6af34 (diff)
parent93aa733d33afe55fc8c40037c2cb46380e1521c8 (diff)
Merge pull request 'improve comment on continue expression behavior' (#369) from pebose/exercises:improve-013-while3-comment into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/369
Diffstat (limited to 'exercises')
-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");