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

info.toml: update threads2 text.

the previous text does not appear in the provided link (https://doc.rust-lang.org/book/ch16-03-shared-state.html#atomic-reference-counting-with-arct).
This commit is contained in:
Roi Gabay 2023-08-20 21:09:10 +03:00 committed by Gabay
parent 64035f766f
commit af76794627

View File

@ -1009,7 +1009,7 @@ and keep reading if you'd like more hints :)
Do you now have an `Arc` `Mutex` `JobStatus` at the beginning of main? Like:
`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
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!!