From 82150dad7bb55de9960236fdbbcfd0ffbaee3106 Mon Sep 17 00:00:00 2001 From: dailiduzhou Date: Thu, 23 Apr 2026 16:09:13 +0800 Subject: [PATCH] fix(async-book): delete duplicate backslashes --- async-book/src/ch16-summary-and-reference-card.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async-book/src/ch16-summary-and-reference-card.md b/async-book/src/ch16-summary-and-reference-card.md index 6b51a8c..3b3026d 100644 --- a/async-book/src/ch16-summary-and-reference-card.md +++ b/async-book/src/ch16-summary-and-reference-card.md @@ -21,7 +21,7 @@ | Run two futures concurrently | `tokio::join!(a, b)` | | Race two futures | `tokio::select! { ... }` | | Spawn a background task | `tokio::spawn(async { ... })` | -| Run blocking code in async | `tokio::task::spawn_blocking(\\|\\| { ... })` | +| Run blocking code in async | `tokio::task::spawn_blocking(\|\| { ... })` | | Limit concurrency | `Semaphore::new(N)` | | Collect many task results | `JoinSet` | | Share state across tasks | `Arc>` or channels |