diff options
Diffstat (limited to 'exercises/090_async7.zig')
-rw-r--r-- | exercises/090_async7.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/090_async7.zig b/exercises/090_async7.zig index 0214f34..2da3a4a 100644 --- a/exercises/090_async7.zig +++ b/exercises/090_async7.zig @@ -10,7 +10,7 @@ // fn bar() void { // fooThatMightSuspend(true); // Now bar() is async! // } -// +// // But if you KNOW the function won't suspend, you can make a // promise to the compiler with the 'nosuspend' keyword: // |