aboutsummaryrefslogtreecommitdiff
path: root/exercises/18_functions.zig
diff options
context:
space:
mode:
authorWill Clardy <will@quexxon.net>2021-02-15 16:55:19 -0500
committerWill Clardy <will@quexxon.net>2021-02-15 16:55:19 -0500
commite58f155bd6261a0c1408e8bb3b177bbced828eb3 (patch)
tree3e2029227daedbd4ad409cc78b1aaefe52683833 /exercises/18_functions.zig
parent0d212ecf5a9de1c0bb673a2b6a409de5a99a9d7b (diff)
downloadziglings-e58f155bd6261a0c1408e8bb3b177bbced828eb3.tar.gz
ziglings-e58f155bd6261a0c1408e8bb3b177bbced828eb3.tar.bz2
ziglings-e58f155bd6261a0c1408e8bb3b177bbced828eb3.tar.xz
ziglings-e58f155bd6261a0c1408e8bb3b177bbced828eb3.zip
Manually apply `zig fmt` style to comments
Diffstat (limited to 'exercises/18_functions.zig')
-rw-r--r--exercises/18_functions.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/18_functions.zig b/exercises/18_functions.zig
index bda90cd..2dbb8eb 100644
--- a/exercises/18_functions.zig
+++ b/exercises/18_functions.zig
@@ -3,7 +3,7 @@
// writing one of our own:
//
// fn foo(n: u8) u8 {
-// return n+1;
+// return n + 1;
// }
//
// The foo() function above takes a number "n" and returns a number that is