summaryrefslogtreecommitdiff
path: root/exercises/090_async7.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-11-07 20:52:39 -0500
committerDave Gauer <dave@ratfactor.com>2021-11-07 20:52:39 -0500
commit40656031c568b346b7eb47118be7c0dc04cc89b6 (patch)
tree5866b7f3a15945a73b946443fbd490fc8f4cc2d8 /exercises/090_async7.zig
parent7d29fd8ce4e2a2acd4863166b752b68d29994645 (diff)
parentc7868de51194b32a16ea6632bb737778ddb983bb (diff)
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises/090_async7.zig')
-rw-r--r--exercises/090_async7.zig2
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:
//