Fix typo in guide overview.

This commit is contained in:
Johannes Liebermann 2021-09-05 18:59:33 +03:00 committed by Sergio Benitez
parent 8cae077ba1
commit 815e8a242f
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ is desired, or when the return value of [`launch()`] is to be inspected. The
Rocket uses Rust [`Future`]s for concurrency. Asynchronous programming with
`Future`s and `async/await` allows route handlers to perform wait-heavy I/O such
as filesystem and network access while still allowing other requests to be make
as filesystem and network access while still allowing other requests to make
progress. For an overview of Rust `Future`s, see [Asynchronous Programming in
Rust](https://rust-lang.github.io/async-book/).