From 46cf5e802c2774d46e8fa97c5042066a82bfb606 Mon Sep 17 00:00:00 2001 From: Paul Ebose Date: Fri, 27 Feb 2026 03:51:12 +0100 Subject: [PATCH 1/2] fix 068_comptime3 comment to 'std.Io.Writer.print' --- exercises/068_comptime3.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/068_comptime3.zig b/exercises/068_comptime3.zig index 15b8997..bb82778 100644 --- a/exercises/068_comptime3.zig +++ b/exercises/068_comptime3.zig @@ -11,7 +11,7 @@ // format string can be checked for errors at compile time rather // than crashing at runtime. // -// (The actual formatting is done by std.fmt.format() and it +// (The actual formatting is done by std.Io.Writer.print() and it // contains a complete format string parser that runs entirely at // compile time!) // From 93aa733d33afe55fc8c40037c2cb46380e1521c8 Mon Sep 17 00:00:00 2001 From: Paul Ebose Date: Fri, 27 Feb 2026 04:07:06 +0100 Subject: [PATCH 2/2] improve comment on continue expression behavior --- exercises/013_while3.zig | 4 ++-- 1 file 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");