diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-08-28 10:20:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-28 10:20:37 -0400 |
commit | e9a1959bfb3d27b9b3571210949208ebcf7caee3 (patch) | |
tree | a6b8882140a5525b04dc972b09d5622a52af1fe9 /exercises/018_functions.zig | |
parent | e36b2973c4dda09ad9d03d2c96afd413b87c344e (diff) | |
download | ziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.tar.gz ziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.tar.bz2 ziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.tar.xz ziglings-e9a1959bfb3d27b9b3571210949208ebcf7caee3.zip |
018 awkward wording
Diffstat (limited to 'exercises/018_functions.zig')
-rw-r--r-- | exercises/018_functions.zig | 4 |
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; |