summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorChris Keschnat <chris@rivered.de>2019-11-12 18:37:23 +0100
committerGitHub <noreply@github.com>2019-11-12 18:37:23 +0100
commitc42c3b2101df9164c8cd7bb344def921e5ba3e61 (patch)
treec2efa6e966acf70a8f3953b9b2342be9f2164a67 /exercises
parentfda5a47069e0954f16a04e8e50945e03becb71a5 (diff)
fix(arc1): Fix some words in the comment
Diffstat (limited to 'exercises')
-rw-r--r--exercises/standard_library_types/arc1.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/standard_library_types/arc1.rs b/exercises/standard_library_types/arc1.rs
index 04c169f..9784e84 100644
--- a/exercises/standard_library_types/arc1.rs
+++ b/exercises/standard_library_types/arc1.rs
@@ -1,8 +1,8 @@
// arc1.rs
// Make this code compile by filling in a value for `shared_numbers` where the
-// TODO comment is and creating an initial binding for `child_numbers`
+// TODO comment is and create an initial binding for `child_numbers`
// somewhere. Try not to create any copies of the `numbers` Vec!
-// Execute `rustlings help arc1` for hints :)
+// Execute `rustlings hint arc1` for hints :)
// I AM NOT DONE