diff options
Diffstat (limited to 'exercises/090_async6.zig')
| -rw-r--r-- | exercises/090_async6.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/090_async6.zig b/exercises/090_async6.zig index 16fb75f..b25e8b1 100644 --- a/exercises/090_async6.zig +++ b/exercises/090_async6.zig @@ -52,7 +52,7 @@ pub fn main(init: std.process.Init) !void { // Wait for the first finisher. // What Select method returns the first completed result? - const winner = try sel.???(); + const winner = try sel.await(); switch (winner) { .hare => |msg| print("Hare: {s}\n", .{msg}), |
