diff --git a/book/src/07_threads/04_scoped_threads.md b/book/src/07_threads/04_scoped_threads.md index f9bfdd7..ef88cbb 100644 --- a/book/src/07_threads/04_scoped_threads.md +++ b/book/src/07_threads/04_scoped_threads.md @@ -27,7 +27,7 @@ Let's unpack what's happening. ## `scope` The `std::thread::scope` function creates a new **scope**.\ -`std::thread::scope` takes as input a closure, with a single argument: a `Scope` instance. +`std::thread::scope` takes a closure as input, with a single argument: a `Scope` instance. ## Scoped spawns