summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authormokou <mokou@fastmail.com>2022-07-14 18:17:23 +0200
committermokou <mokou@fastmail.com>2022-07-14 18:17:23 +0200
commitcf9629cb0ea54220085cc33257613157ac830ab1 (patch)
tree2764d7b385adfb61d7a0b905a8a3a0fd504b4a8a /exercises
parent016d718a286f6ccacaecdaa81d9245e96424bae1 (diff)
feat: move box/arc behind iterators
Diffstat (limited to 'exercises')
-rw-r--r--exercises/standard_library_types/arc1.rs2
-rw-r--r--exercises/standard_library_types/box1.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/standard_library_types/arc1.rs b/exercises/standard_library_types/arc1.rs
index f60061e..93a2703 100644
--- a/exercises/standard_library_types/arc1.rs
+++ b/exercises/standard_library_types/arc1.rs
@@ -16,7 +16,7 @@
// Make this code compile by filling in a value for `shared_numbers` where the
// first TODO comment is, and create an initial binding for `child_numbers`
// where the second TODO comment is. Try not to create any copies of the `numbers` Vec!
-// Execute `rustlings hint arc1` for hints :)
+// Execute `rustlings hint arc1` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
diff --git a/exercises/standard_library_types/box1.rs b/exercises/standard_library_types/box1.rs
index f312f3d..9d9237c 100644
--- a/exercises/standard_library_types/box1.rs
+++ b/exercises/standard_library_types/box1.rs
@@ -14,7 +14,7 @@
//
// Note: the tests should not be changed
//
-// Execute `rustlings hint box1` for hints :)
+// Execute `rustlings hint box1` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE