Update 04_scoped_threads.md (#21)

Fix incorrect statement and remove unintended line break.
This commit is contained in:
jw013 2024-05-22 05:00:24 -04:00 committed by GitHub
parent d5f407d720
commit 63d9ed8478
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ That's not an issue with `std::thread::scope`—you can **safely borrow from the
In our example, `v` is created before the spawning points.
It will only be dropped _after_ `scope` returns. At the same time,
all threads spawned inside `scope` are guaranteed `v` is dropped,
all threads spawned inside `scope` are guaranteed to finish _before_ `scope` returns,
therefore there is no risk of having dangling references.
The compiler won't complain!