aboutsummaryrefslogtreecommitdiff
path: root/exercises/090_async7.zig
diff options
context:
space:
mode:
authorJonathan Halmen <jonathan@halmen.org>2021-11-05 16:44:29 +0100
committerJonathan Halmen <jonathan@halmen.org>2021-11-05 17:46:56 +0100
commit88886a37d9721763326ff80a7b2c127e4a8cb8ae (patch)
tree3e6ea609c66930457907903329cdd947edafbb78 /exercises/090_async7.zig
parent4147a9a39b362468cc6f16c8ce751ee3481321f4 (diff)
downloadziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.tar.gz
ziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.tar.bz2
ziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.tar.xz
ziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.zip
fix whitespace line-endings
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:
//