Grammar fixups

This commit is contained in:
Ernie Hershey
2024-08-13 11:41:18 -04:00
parent fb8f83a518
commit d5918375f3
2 changed files with 2 additions and 2 deletions

View 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