From 9113c98364776db1c23fe64d60a26bace558b2c8 Mon Sep 17 00:00:00 2001 From: Lunar-YZ <49775921+Lunar-YZ@users.noreply.github.com> Date: Tue, 2 Jan 2024 10:38:42 +0800 Subject: [PATCH] Update asymmetric.qbk --- doc/asymmetric.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/asymmetric.qbk b/doc/asymmetric.qbk index 09e7256..6473cf8 100644 --- a/doc/asymmetric.qbk +++ b/doc/asymmetric.qbk @@ -289,7 +289,7 @@ After unwinding, a __coro__ is complete. coro_t::push_type sink( [&](coro_t::pull_type& source){ X x; - for(int i = 0; ;++i){ + for(int i = 0; ; ++i){ std::cout << "fn(): " << i << std::endl; // transfer execution control back to main() source();