diff --git a/doc/v2/quickstart.qbk b/doc/v2/quickstart.qbk index 4a770180..10e79360 100644 --- a/doc/v2/quickstart.qbk +++ b/doc/v2/quickstart.qbk @@ -90,7 +90,7 @@ The async version supports cancellation and will forward cancellation types as f ``` asio::io_context ctx; - asio::steady_timer timout{ctx, std::chrono::seconds(10)}; + asio::steady_timer timeout{ctx, std::chrono::seconds(10)}; asio::cancellation_signal sig; async_execute(process("/usr/bin/g++", {"hello_world.cpp"}), diff --git a/doc/v2/stdio.qbk b/doc/v2/stdio.qbk index 09a3b631..b21f6f71 100644 --- a/doc/v2/stdio.qbk +++ b/doc/v2/stdio.qbk @@ -23,7 +23,7 @@ automatically connected and the other side will get assigned to the child proces proc.wait(); ``` -readable pipes can be assigned to `out` an `err``, while writable_pipes can be assigned to `in`. +readable pipes can be assigned to `out` an `err`, while writable_pipes can be assigned to `in`. [endsect]