mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-13 03:21:20 +08:00
fix typo
This commit is contained in:
parent
7bc51791c7
commit
8826d457b8
@ -110,7 +110,7 @@ in previous iteration of loop
|
|||||||
which does not implement the `Copy` trait
|
which does not implement the `Copy` trait
|
||||||
```
|
```
|
||||||
|
|
||||||
错误信息表明 `counter` 值在上一次循环中被移动了。所有 Rust 告诉我们不能将 `counter` 锁的所有权移动到多个线程中。让我们通过一个第十五章讨论过的多所有权手段来修复这个编译错误。
|
错误信息表明 `counter` 值在上一次循环中被移动了。所以 Rust 告诉我们不能将 `counter` 锁的所有权移动到多个线程中。让我们通过一个第十五章讨论过的多所有权手段来修复这个编译错误。
|
||||||
|
|
||||||
#### 多线程和多所有权
|
#### 多线程和多所有权
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user