1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-25 00:37:14 +02:00

Merge pull request #1630 from gabay/chore/threads2-text

info.toml: update threads2 text.
This commit is contained in:
liv
2023-09-04 13:46:28 +02:00
committed by GitHub

View File

@ -1011,7 +1011,7 @@ and keep reading if you'd like more hints :)
Do you now have an `Arc` `Mutex` `JobStatus` at the beginning of main? Like: Do you now have an `Arc` `Mutex` `JobStatus` at the beginning of main? Like:
`let status = Arc::new(Mutex::new(JobStatus { jobs_completed: 0 }));` `let status = Arc::new(Mutex::new(JobStatus { jobs_completed: 0 }));`
Similar to the code in the example in the book that happens after the text Similar to the code in the example in the book that happens after the text
that says "We can use Arc<T> to fix this.". If not, give that a try! If you that says "Sharing a Mutex<T> Between Multiple Threads". If not, give that a try! If you
do and would like more hints, keep reading!! do and would like more hints, keep reading!!