diff --git a/src/ch20-02-multithreaded.md b/src/ch20-02-multithreaded.md index 244f8e53fb..86e7a12598 100644 --- a/src/ch20-02-multithreaded.md +++ b/src/ch20-02-multithreaded.md @@ -585,8 +585,8 @@ The call to `recv` blocks, so if there is no job yet, the current thread will wait until a job becomes available. The `Mutex` ensures that only one `Worker` thread at a time is trying to request a job. -With the implementation of this trick, our thread pool is in a working state! -Give it a `cargo run` and make some requests: +Our thread pool is now in a working state! Give it a `cargo run` and make some +requests: