From ff43048585c7182fc9e5e63eb5ef0b93c884f94e Mon Sep 17 00:00:00 2001 From: Alexx Roche Date: Tue, 30 Mar 2021 13:56:09 +0200 Subject: [PATCH] grammar (#957) almost done with the proofreading first pass ;-) --- blog/content/edition-2/posts/12-async-await/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-2/posts/12-async-await/index.md b/blog/content/edition-2/posts/12-async-await/index.md index bc58ec10..d6e39754 100644 --- a/blog/content/edition-2/posts/12-async-await/index.md +++ b/blog/content/edition-2/posts/12-async-await/index.md @@ -91,7 +91,7 @@ However, the strong performance and memory benefits of cooperative multitasking ## Async/Await in Rust -The Rust language provides first-class support for cooperative multitasking in form of async/await. Before we can explore what async/await is and how it works, we need to understand how _futures_ and asynchronous programming work in Rust. +The Rust language provides first-class support for cooperative multitasking in the form of async/await. Before we can explore what async/await is and how it works, we need to understand how _futures_ and asynchronous programming work in Rust. ### Futures