From: Remo Senekowitsch <remo@buenzli.dev>
Date: Wed, 2 Oct 2024 13:20:17 +0000 (+0200)
Subject: Fix typo (#160)
X-Git-Url: https://git.euphorik.ch/index.cgi?a=commitdiff_plain;h=a899ecec96d8166a72c7518e1af31e9b47fc9b4c;p=rust_exercises.git

Fix typo (#160)
---

diff --git a/book/src/08_futures/01_async_fn.md b/book/src/08_futures/01_async_fn.md
index f935405..cf0ed4e 100644
--- a/book/src/08_futures/01_async_fn.md
+++ b/book/src/08_futures/01_async_fn.md
@@ -107,7 +107,7 @@ asynchronous programming in Rust.
 The entrypoint of your executable, the `main` function, must be a synchronous function.
 That's where you're supposed to set up and launch your chosen async runtime.
 
-Most runtimes provides a macro to make this easier. For `tokio`, it's `tokio::main`:
+Most runtimes provide a macro to make this easier. For `tokio`, it's `tokio::main`:
 
 ```rust
 #[tokio::main]