From 215cd9b985f66043cab014c9e47deaa98592e1c0 Mon Sep 17 00:00:00 2001 From: Laurent Cheylus Date: Fri, 1 May 2026 13:35:18 +0200 Subject: [PATCH] x.async: fix format for example in README (#27046) Signed-off-by: Laurent Cheylus --- vlib/x/async/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/vlib/x/async/README.md b/vlib/x/async/README.md index 6366688a6..6ddb04222 100644 --- a/vlib/x/async/README.md +++ b/vlib/x/async/README.md @@ -79,9 +79,7 @@ fn main() { return error('stop the group') })! - group.wait() or { - eprintln('group failed: ${err.msg()}') - } + group.wait() or { eprintln('group failed: ${err.msg()}') } } ``` -- 2.39.5