Skip to content

Commit

Permalink
Merge pull request #4063 from devgiants/overflaw-fix-repetition-typo
Browse files Browse the repository at this point in the history
Remove "different" repetition typo in chapter 17.1
  • Loading branch information
chriskrycho authored Oct 10, 2024
2 parents d7b5eb9 + e95efa0 commit 57f4196
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ch17-01-futures-and-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ Most languages which support async bundle a runtime with the language. Rust does
not. Instead, there are many different async runtimes available, each of which
makes different tradeoffs suitable to the use case they target. For example, a
high-throughput web server with many CPU cores and a large amount of RAM has
very different different needs than a microcontroller with a single core, a
small amount of RAM, and no ability to do heap allocations. The crates which
provide those runtimes also often supply async versions of common functionality
such as file or network I/O.
very different needs than a microcontroller with a single core, a small amount
of RAM, and no ability to do heap allocations. The crates which provide those
runtimes also often supply async versions of common functionality such as file
or network I/O.

Here, and throughout the rest of this chapter, we’ll use the `run` function
from the `trpl` crate, which takes a future as an argument and runs it to
Expand Down

0 comments on commit 57f4196

Please sign in to comment.