fix(async-book): delete duplicate backslashes

This commit is contained in:
dailiduzhou
2026-04-23 16:09:13 +08:00
parent a981878c66
commit 82150dad7b
@@ -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<Mutex<T>>` or channels |