summaryrefslogtreecommitdiff
path: root/rustlings-macros
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-29 01:48:00 +0200
committermo8it <mo8it@proton.me>2024-06-29 01:48:00 +0200
commita943f5ba32412cf5b8fdd8665c1082ecab3ec545 (patch)
tree67c1821b95817ae3b25cfebb847eb20728d81d3f /rustlings-macros
parentf3842aa746aa77a3fdf0f699951cde0d49f042c4 (diff)
arc1 solution
Diffstat (limited to 'rustlings-macros')
-rw-r--r--rustlings-macros/info.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index 5b3f781..23b6181 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -1004,7 +1004,7 @@ name = "arc1"
dir = "19_smart_pointers"
test = false
hint = """
-Make `shared_numbers` be an `Arc` from the numbers vector. Then, in order
+Make `shared_numbers` be an `Arc` from the `numbers` vector. Then, in order
to avoid creating a copy of `numbers`, you'll need to create `child_numbers`
inside the loop but still in the main thread.