From 815e8a242f51c2b6b4d2f655d3e20413c3929785 Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Sun, 5 Sep 2021 18:59:33 +0300 Subject: [PATCH] Fix typo in guide overview. --- site/guide/3-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/3-overview.md b/site/guide/3-overview.md index dd21fe3c..9e5b2973 100644 --- a/site/guide/3-overview.md +++ b/site/guide/3-overview.md @@ -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/).