From 44679c0f00fc2fa68dc19c36486e72061696b60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A5=9D=E6=99=93=E4=B8=9C?= Date: Wed, 6 Jun 2018 10:58:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20"=E6=98=8E=E5=89=8D"=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=B8=BA"=E6=98=8E=E7=A1=AE"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch16-02-message-passing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch16-02-message-passing.md b/src/ch16-02-message-passing.md index da66615..8836bbb 100644 --- a/src/ch16-02-message-passing.md +++ b/src/ch16-02-message-passing.md @@ -153,7 +153,7 @@ not implement the `Copy` trait ### 发送多个值并观察接收者的等待 -示例 16-8 中的代码可以编译和运行,不过它并没有明前的告诉我们两个独立的线程通过通道相互通讯。示例 16-10 则有一些改进会证明示例 16-8 中的代码是并发执行的:新建线程现在会发送多个消息并在每个消息之间暂停一秒钟。 +示例 16-8 中的代码可以编译和运行,不过它并没有明确的告诉我们两个独立的线程通过通道相互通讯。示例 16-10 则有一些改进会证明示例 16-8 中的代码是并发执行的:新建线程现在会发送多个消息并在每个消息之间暂停一秒钟。 文件名: src/main.rs