1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-10 00:26:07 +02:00

Merge pull request #1203 from skaunov/patch-2

Correct a link in `threads1` `hint`
This commit is contained in:
liv 2022-09-29 10:47:56 +02:00 committed by GitHub
commit cade600c91
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -969,7 +969,7 @@ https://doc.rust-lang.org/std/thread/fn.spawn.html
A challenge with multi-threaded applications is that the main thread can
finish before the spawned threads are completed.
https://doc.rust-lang.org/book/ch16-01-threads.html#waiting-for-all-threads-to-finish-using-join-handle
https://doc.rust-lang.org/book/ch16-01-threads.html#waiting-for-all-threads-to-finish-using-join-handles
Collect the JoinHandles and wait for them to finish.
https://doc.rust-lang.org/std/thread/struct.JoinHandle.html