From e4cc9b283a65e206425227e2039625bf71a238f3 Mon Sep 17 00:00:00 2001 From: Azlan Mukhtar Date: Sat, 11 Apr 2020 16:57:10 +0800 Subject: [PATCH] Fix semicolon missing in async_worker.md --- doc/async_worker_variants.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/async_worker_variants.md b/doc/async_worker_variants.md index a1fb6787e..8b892eaee 100644 --- a/doc/async_worker_variants.md +++ b/doc/async_worker_variants.md @@ -399,7 +399,7 @@ class EchoWorker : public AsyncProgressQueueWorker { void Execute(const ExecutionProgress& progress) { // Need to simulate cpu heavy task for (uint32_t i = 0; i < 100; ++i) { - progress.Send(&i, 1) + progress.Send(&i, 1); std::this_thread::sleep_for(std::chrono::seconds(1)); } }