From 7fcfb60cc414601d407f2d08c9d4cf7b3d38a5d9 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Mon, 13 Apr 2026 17:56:05 +0200 Subject: [PATCH 1/2] typo --- exercises/093_async9.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {}; From e71175e4f8ab53f5fbce2ef70c11a1a9e9e725e8 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Mon, 13 Apr 2026 18:06:01 +0200 Subject: [PATCH 2/2] typo --- patches/patches/093_async9.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/patches/patches/093_async9.patch b/patches/patches/093_async9.patch index ebdfce2..ad81f00 100644 --- a/patches/patches/093_async9.patch +++ b/patches/patches/093_async9.patch @@ -1,5 +1,5 @@ ---- exercises/093_async9.zig 2026-04-06 19:26:11.388025362 +0200 -+++ answers/093_async9.zig 2026-04-06 19:18:36.242931688 +0200 +--- exercises/093_async9.zig 2026-04-13 17:55:35.567204530 +0200 ++++ answers/093_async9.zig 2026-04-13 18:05:05.636355044 +0200 @@ -43,7 +43,7 @@ // Launch with a guaranteed separate unit of concurrency. // Which Io method guarantees this? @@ -8,4 +8,4 @@ + var future = try io.concurrent(compute, .{io}); defer _ = future.cancel(io); - // Note: All breaks in this excercise (using sleep) + // Note: All breaks in this exercise (using sleep)