summaryrefslogtreecommitdiff
path: root/exercises/090_async7.zig
diff options
context:
space:
mode:
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 f914aef..bfe6ffd 100644
--- a/exercises/090_async7.zig
+++ b/exercises/090_async7.zig
@@ -42,7 +42,7 @@ pub fn main(init: std.process.Init) !void {
try group.await(io);
- print("Counter: {} (expected: 400)\n", .{state.counter});
+ print("Counter: {}\n", .{state.counter});
}
fn increment(io: std.Io, state: *SharedState, times: u32) void {