Skip to content

Commit fedc819

Browse files
azlanGabriel Schulhof
authored andcommitted
doc: fix semicolon missing in async_worker.md
PR-URL: #701 Reviewed-By: Nicola Del Gobbo <[email protected]> Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent cdb6625 commit fedc819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/async_worker_variants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ class EchoWorker : public AsyncProgressQueueWorker<uint32_t> {
399399
void Execute(const ExecutionProgress& progress) {
400400
// Need to simulate cpu heavy task
401401
for (uint32_t i = 0; i < 100; ++i) {
402-
progress.Send(&i, 1)
402+
progress.Send(&i, 1);
403403
std::this_thread::sleep_for(std::chrono::seconds(1));
404404
}
405405
}

0 commit comments

Comments
 (0)