Translate some english sentences that have missed the translation.

This commit is contained in:
dean 2018-01-17 17:13:36 +08:00
parent 703306226a
commit 987461504d

View File

@ -174,7 +174,7 @@ fn main() {
} }
``` ```
<span class="caption">示例 16-3: 在主线程中创建一个 vector尝试在其它线程中使用它/span> <span class="caption">示例 16-3: 在主线程中创建一个 vector尝试在其它线程中使用它</span>
闭包使用了`v`,所以闭包会获取`v`并使其成为闭包环境的一部分。因为`thread::spawn`在一个新线程中运行这个闭包,所以可以在新线程中访问`v`。 闭包使用了`v`,所以闭包会获取`v`并使其成为闭包环境的一部分。因为`thread::spawn`在一个新线程中运行这个闭包,所以可以在新线程中访问`v`。