summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-04-13 18:36:22 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-04-13 18:36:22 +0200
commitb9cbe199ab257cac447412cd924d4e833a9f7b7b (patch)
tree59a98ca0b793af685faff7b5ed9dca47917dc599 /exercises
parent34c3125411f52f30076ef27b5d4b5fb77f89dacc (diff)
parente71175e4f8ab53f5fbce2ef70c11a1a9e9e725e8 (diff)
Merge pull request 'typo' (#394) from typo_async9 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/394
Diffstat (limited to 'exercises')
-rw-r--r--exercises/093_async9.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/093_async9.zig b/exercises/093_async9.zig
index 4a41544..e7d5f68 100644
--- a/exercises/093_async9.zig
+++ b/exercises/093_async9.zig
@@ -46,7 +46,7 @@ pub fn main(init: std.process.Init) !void {
var future = try io.???(compute, .{io});
defer _ = future.cancel(io);
- // Note: All breaks in this excercise (using sleep)
+ // Note: All breaks in this exercise (using sleep)
// are only necessary for a deterministic result.
io.sleep(std.Io.Duration.fromMilliseconds(100), .awake) catch {};