From eedadc382ece6df02c44cd106bca2747b044bea6 Mon Sep 17 00:00:00 2001 From: lcofjp Date: Thu, 14 Dec 2017 13:20:02 +0800 Subject: [PATCH] fix typo --- src/ch16-01-threads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch16-01-threads.md b/src/ch16-01-threads.md index fb7c653..2881279 100644 --- a/src/ch16-01-threads.md +++ b/src/ch16-01-threads.md @@ -147,7 +147,7 @@ hi number 3 from the main thread! hi number 4 from the main thread! ``` -稍微考虑一下将`join`放置与何处会影响线程是否同时运行。 +稍微考虑一下将`join`放置于何处会影响线程是否同时运行。 ### 线程和`move`闭包