2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-19 04:22:15 +00:00

More typo fixes.

This commit is contained in:
Klemens Morgenstern
2023-02-22 13:04:13 +08:00
parent d3f006acd4
commit 3211afda4a
2 changed files with 2 additions and 2 deletions

View File

@@ -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"}),

View File

@@ -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]