summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-01-04 14:35:07 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-01-04 14:35:07 +0100
commit62122973358122463823b87f6c9c5ac47d449a08 (patch)
tree7c1ef5184fad9964336a80450d5d64b5aa5603fe /exercises
parent8791b9440a1b3c726997c671cc9b83d14d389bd4 (diff)
parentf87097ae54f5b5508f71106354cd18d4cb2dc520 (diff)
Merge pull request 'minor typos' (#343) from typos into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/343
Diffstat (limited to 'exercises')
-rw-r--r--exercises/001_hello.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/001_hello.zig b/exercises/001_hello.zig
index 2d95a10..7f40b92 100644
--- a/exercises/001_hello.zig
+++ b/exercises/001_hello.zig
@@ -2,8 +2,8 @@
// Oh no, this is supposed to print "Hello world!" but it needs
// your help.
//
-// Zig functions are private by default but the main() function
-// should be public.
+// Zig functions are private by default, but the main() function
+// must be public.
//
// A function is made public with the "pub" statement like so:
//