From 0036843f0c16afa33a2036626bde3ecf2a894cef Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Fri, 12 May 2023 14:34:11 +0200 Subject: [PATCH] Fix typo in dining-philosophers-async.md (#631) --- src/exercises/concurrency/dining-philosophers-async.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exercises/concurrency/dining-philosophers-async.md b/src/exercises/concurrency/dining-philosophers-async.md index 64bf9577..611c1c93 100644 --- a/src/exercises/concurrency/dining-philosophers-async.md +++ b/src/exercises/concurrency/dining-philosophers-async.md @@ -48,7 +48,7 @@ tokio = {version = "1.26.0", features = ["sync", "time", "macros", "rt-multi-thr ``` Also note that this time you have to use the `Mutex` and the `mpsc` module -form the `tokio` crate. +from the `tokio` crate.