aboutsummaryrefslogtreecommitdiff
path: root/exercises
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
commite9a1959bfb3d27b9b3571210949208ebcf7caee3 (patch)
treea6b8882140a5525b04dc972b09d5622a52af1fe9 /exercises
parente36b2973c4dda09ad9d03d2c96afd413b87c344e (diff)
downloadziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.tar.gz
ziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.tar.bz2
ziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.tar.xz
ziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.zip
018 awkward wording
Diffstat (limited to 'exercises')
-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;