summaryrefslogtreecommitdiff
path: root/exercises/001_hello.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/001_hello.zig')
-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:
//