1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-22 14:59:37 +02:00

Fix typo in dining-philosophers-async.md (#631)

This commit is contained in:
Martin Geisler 2023-05-12 14:34:11 +02:00 committed by GitHub
parent 780c23e610
commit 0036843f0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.
<details>