Skip to content

Commit d591837

Browse files
committed
Grammar fixups
1 parent fb8f83a commit d591837

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/src/08_futures/03_runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ across threads.
4141
## Implications
4242

4343
`tokio::spawn` is flavor-agnostic: it'll work no matter if you're running on the multithreaded
44-
or current-thread runtime. The downside is that the signature assume the worst case
44+
or current-thread runtime. The downside is that the signature assumes the worst case
4545
(i.e. multithreaded) and is constrained accordingly:
4646

4747
```rust

exercises/08_futures/03_runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// TODO: Implement the `fixed_reply` function. It should accept two `TcpListener` instances,
2-
// accept connections on both of them concurrently, and always reply clients by sending
2+
// accept connections on both of them concurrently, and always reply to clients by sending
33
// the `Display` representation of the `reply` argument as a response.
44
use std::fmt::Display;
55
use tokio::io::AsyncWriteExt;

0 commit comments

Comments
 (0)