File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
exercises/08_futures/03_runtime/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ across threads.
41
41
## Implications
42
42
43
43
` 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
45
45
(i.e. multithreaded) and is constrained accordingly:
46
46
47
47
``` rust
Original file line number Diff line number Diff line change 1
1
// 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
3
3
// the `Display` representation of the `reply` argument as a response.
4
4
use std:: fmt:: Display ;
5
5
use tokio:: io:: AsyncWriteExt ;
You can’t perform that action at this time.
0 commit comments