diff options
author | Will Clardy <will@quexxon.net> | 2021-02-15 16:55:19 -0500 |
---|---|---|
committer | Will Clardy <will@quexxon.net> | 2021-02-15 16:55:19 -0500 |
commit | e58f155bd6261a0c1408e8bb3b177bbced828eb3 (patch) | |
tree | 3e2029227daedbd4ad409cc78b1aaefe52683833 /exercises/19_functions2.zig | |
parent | 0d212ecf5a9de1c0bb673a2b6a409de5a99a9d7b (diff) | |
download | ziglings-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/19_functions2.zig')
-rw-r--r-- | exercises/19_functions2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/19_functions2.zig b/exercises/19_functions2.zig index 99319c3..c323be8 100644 --- a/exercises/19_functions2.zig +++ b/exercises/19_functions2.zig @@ -3,7 +3,7 @@ // example that takes two parameters. As you can see, parameters // are declared just like any other types ("name": "type"): // -// fn myFunction( number: u8, is_lucky: bool ) { +// fn myFunction(number: u8, is_lucky: bool) { // ... // } // |