summaryrefslogtreecommitdiff
path: root/exercises/026_hello2.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2025-12-30 13:40:24 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2025-12-30 13:40:24 +0100
commitaf2a30e6da256289829f6579b9ca424a8a61a221 (patch)
tree5a5f2d1a0839edf6ab77ffbc1b33304e1d7af908 /exercises/026_hello2.zig
parent4927ef6a2624430d9be54d40350b1c0e60a3fb06 (diff)
change io explanation
Diffstat (limited to 'exercises/026_hello2.zig')
-rw-r--r--exercises/026_hello2.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/026_hello2.zig b/exercises/026_hello2.zig
index 7daa9e2..9cd8bbc 100644
--- a/exercises/026_hello2.zig
+++ b/exercises/026_hello2.zig
@@ -5,7 +5,7 @@
//
const std = @import("std");
-// Instance for input/output operations, we'll learn how to create them later.
+// Instance for input/output operations; we will learn more about this later.
const io = std.Options.debug_io;
// Take note that this main() definition now returns "!void" rather