1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-28 18:11:07 +02:00

Fix broken link in Pitfalls of async/await (#811)

Fix broken link in Async Pitfalls
This commit is contained in:
Martin Geisler 2023-06-13 19:26:56 +02:00 committed by GitHub
parent 078a99885d
commit 7c9195ba7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@ line-numbers = true
# Redirects in the form of "old-path" = "new-path", where the new path
# is relative to the old path.
"async/concurrency/channels.html" = "../channels.html"
"async/pitfall/async-traits.html" = "../pitfalls/async-traits.html"
"exercises/day-4/afternoon.html" = "../android/morning.html"
"exercises/day-4/android.html" = "../android/morning.html"
"exercises/day-4/dining-philosophers.html" = "../concurrency/dining-philosophers.html"

View File

@ -4,5 +4,5 @@ Async / await provides convenient and efficient abstraction for concurrent async
- [Blocking the Executor](pitfalls/blocking-executor.md)
- [Pin](pitfalls/pin.md)
- [Async Traits](pitfall/async-traits.md)
- [Async Traits](pitfalls/async-traits.md)
- [Cancellation](pitfalls/cancellation.md)