diff --git a/doc/async_worker_variants.md b/doc/async_worker_variants.md index a1fb678..8b892ea 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)); } }