Grammar fixups
authorErnie Hershey <github@ernie.org>
Tue, 13 Aug 2024 15:41:18 +0000 (11:41 -0400)
committerErnie Hershey <github@ernie.org>
Tue, 13 Aug 2024 15:41:40 +0000 (11:41 -0400)
book/src/08_futures/03_runtime.md
exercises/08_futures/03_runtime/src/lib.rs

index f64e843..ebae7da 100644 (file)
@@ -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
index f8840b9..087ddc0 100644 (file)
@@ -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;