We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd1e24 commit 68fbf99Copy full SHA for 68fbf99
src/ch16-03-shared-state.md
@@ -128,7 +128,7 @@ We hinted that this example wouldn’t compile. Now let’s find out why!
128
129
The error message states that the `counter` value was moved in the previous
130
iteration of the loop. Rust is telling us that we can’t move the ownership
131
-of lock `counter` into multiple threads. Let’s fix the compiler error with a
+of the `counter` lock into multiple threads. Let’s fix the compiler error with a
132
multiple-ownership method we discussed in Chapter 15.
133
134
#### Multiple Ownership with Multiple Threads
0 commit comments