From 03fdce38cad739d2a9cc870754d6101ca6090148 Mon Sep 17 00:00:00 2001 From: Hector PENG Date: Fri, 30 May 2025 10:49:31 +0800 Subject: [PATCH] Updated 'src/Ch16_1_async_programming.md'. --- src/Ch16_1_async_programming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ch16_1_async_programming.md b/src/Ch16_1_async_programming.md index 25a991c..6458668 100644 --- a/src/Ch16_1_async_programming.md +++ b/src/Ch16_1_async_programming.md @@ -89,4 +89,4 @@ println!("{data}"); 在 Rust 中使用异步时,我们总是要处理并发问题。根据硬件、操作系统和我们所使用的异步运行时(稍后将详细介绍异步运行时),并发也可能在其表象之下,使用并行。 -现在,我们来深入了解一下,Rust 中的异步编程的工作原理。 +现在,我们来深入了解一下,Rust 中异步编程的工作原理。