summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorBrandon Macer <bobbysox322@gmail.com>2021-04-21 08:50:03 -0400
committerGitHub <noreply@github.com>2021-04-21 14:50:03 +0200
commit81be40448777fa338ebced3b0bfc1b32d6370313 (patch)
treef93c568a6ffc204e3fdaf5dfd696efcba8ffee6b /info.toml
parent79cc65791715652a7f35a5b7f51309b40033cdb9 (diff)
feat(arc1): Add more details to description and hint (#710)
Co-authored-by: bmacer <bmacer@cisco.com> Co-authored-by: marisa <mokou@fastmail.com> Co-authored-by: Roberto Vidal <vidal.roberto.j@gmail.com>
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/info.toml b/info.toml
index 36dcbe9..82e1195 100644
--- a/info.toml
+++ b/info.toml
@@ -679,7 +679,12 @@ to avoid creating a copy of `numbers`, you'll need to create `child_numbers`
inside the loop but still in the main thread.
`child_numbers` should be a clone of the Arc of the numbers instead of a
-thread-local copy of the numbers."""
+thread-local copy of the numbers.
+
+This is a simple exercise if you understand the underlying concepts, but if this
+is too much of a struggle, consider reading through all of Chapter 16 in the book:
+https://doc.rust-lang.org/stable/book/ch16-00-concurrency.html
+"""
[[exercises]]
name = "iterators1"