summaryrefslogtreecommitdiff
path: root/exercises/068_comptime3.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 12:25:13 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 12:25:13 +0100
commit0785c715321d6ebc76c75a42efd76822f9a6af34 (patch)
tree534fad2edfd37ed1b74129df0dd032689ba71326 /exercises/068_comptime3.zig
parent3ecaa34271da0c0c41926ff604f9419e0b492bb3 (diff)
parent46cf5e802c2774d46e8fa97c5042066a82bfb606 (diff)
Merge pull request 'fix 068_comptime3 comment to 'std.Io.Writer.print'' (#371) from pebose/exercises:correct-comptime3-comment into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/371
Diffstat (limited to 'exercises/068_comptime3.zig')
-rw-r--r--exercises/068_comptime3.zig2
1 files changed, 1 insertions, 1 deletions
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!)
//