diff options
| author | Dave Gauer <[email protected]> | 2021-04-21 17:13:58 -0400 |
|---|---|---|
| committer | Dave Gauer <[email protected]> | 2021-04-21 17:13:58 -0400 |
| commit | 0efd9340f024bbcc683fa8fb9cdebc6c5a5992b1 (patch) | |
| tree | 419e480bc3563ec55c11c6ab26f2560c9a31b031 /exercises | |
| parent | be2b98f4047d81804d0d65e73a25828420e6a26c (diff) | |
| download | ziglings-0efd9340f024bbcc683fa8fb9cdebc6c5a5992b1.tar.xz ziglings-0efd9340f024bbcc683fa8fb9cdebc6c5a5992b1.zip | |
missing return type from example in 069
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/069_comptime4.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/069_comptime4.zig b/exercises/069_comptime4.zig index d2aec5e..c1efa46 100644 --- a/exercises/069_comptime4.zig +++ b/exercises/069_comptime4.zig @@ -2,7 +2,7 @@ // One of the more common uses of 'comptime' function parameters is // passing a type to a function: // -// fn foo(comptime MyType: type) { ... } +// fn foo(comptime MyType: type) void { ... } // // In fact, types are ONLY available at compile time, so the // 'comptime' keyword is required here. |
