Skip to content

Commit 68fbf99

Browse files
committed
Ch. 16: fix a grammar issue
Fixes #3664
1 parent 3dd1e24 commit 68fbf99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ch16-03-shared-state.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ We hinted that this example wouldn’t compile. Now let’s find out why!
128128

129129
The error message states that the `counter` value was moved in the previous
130130
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
131+
of the `counter` lock into multiple threads. Let’s fix the compiler error with a
132132
multiple-ownership method we discussed in Chapter 15.
133133

134134
#### Multiple Ownership with Multiple Threads

0 commit comments

Comments
 (0)