aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/018_functions.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-08-28 10:20:37 -0400
committerGitHub <noreply@github.com>2021-08-28 10:20:37 -0400
commit8e540d6388e9e89ebb5ba9343f5d52353a8d5e95 (patch)
treea6b8882140a5525b04dc972b09d5622a52af1fe9 /exercises/018_functions.zig
parent1e1bed46e15d88af90f7885a4d4c1e9eaaee0600 (diff)
018 awkward wording
Diffstat (limited to 'exercises/018_functions.zig')
-rw-r--r--exercises/018_functions.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/018_functions.zig b/exercises/018_functions.zig
index e79b765..bf5e82c 100644
--- a/exercises/018_functions.zig
+++ b/exercises/018_functions.zig
@@ -1,6 +1,6 @@
//
-// Functions! We've already seen lots of ones called "main()". Now let's try
-// writing one of our own:
+// Functions! We've already created lots of functions called "main()". Now let's
+// try writing one of our own:
//
// fn foo(n: u8) u8 {
// return n + 1;