summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoi Gabay <gabay@users.noreply.github.com>2023-08-20 21:09:10 +0300
committerGabay <roigby@gmail.com>2023-08-21 16:19:30 +0300
commitaf76794627ac9252650c8d3ec41d9afe251ca5e5 (patch)
tree69a4f87c36008089e088ddfb3ee7433c152f71d6
parent64035f766fe7e363ab73dba3483f688a94595a90 (diff)
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).
-rw-r--r--info.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/info.toml b/info.toml
index e8a28cb..05bb0d5 100644
--- a/info.toml
+++ b/info.toml
@@ -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!!