mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-11-16 19:50:44 +01:00
Grammar fixups
This commit is contained in:
parent
fb8f83a518
commit
d5918375f3
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ across threads.
|
|||
## Implications
|
||||
|
||||
`tokio::spawn` is flavor-agnostic: it'll work no matter if you're running on the multithreaded
|
||||
or current-thread runtime. The downside is that the signature assume the worst case
|
||||
or current-thread runtime. The downside is that the signature assumes the worst case
|
||||
(i.e. multithreaded) and is constrained accordingly:
|
||||
|
||||
```rust
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// TODO: Implement the `fixed_reply` function. It should accept two `TcpListener` instances,
|
||||
// accept connections on both of them concurrently, and always reply clients by sending
|
||||
// accept connections on both of them concurrently, and always reply to clients by sending
|
||||
// the `Display` representation of the `reply` argument as a response.
|
||||
use std::fmt::Display;
|
||||
use tokio::io::AsyncWriteExt;
|
||||
|
|
Loading…
Reference in a new issue