summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/hashmaps/README.md (renamed from exercises/collections/README.md)0
-rw-r--r--exercises/hashmaps/hashmaps1.rs (renamed from exercises/collections/hashmap1.rs)4
-rw-r--r--exercises/hashmaps/hashmaps2.rs (renamed from exercises/collections/hashmap2.rs)4
3 files changed, 4 insertions, 4 deletions
diff --git a/exercises/collections/README.md b/exercises/hashmaps/README.md
index 30471cf..30471cf 100644
--- a/exercises/collections/README.md
+++ b/exercises/hashmaps/README.md
diff --git a/exercises/collections/hashmap1.rs b/exercises/hashmaps/hashmaps1.rs
index 64b5a7f..26178b0 100644
--- a/exercises/collections/hashmap1.rs
+++ b/exercises/hashmaps/hashmaps1.rs
@@ -1,4 +1,4 @@
-// hashmap1.rs
+// hashmaps1.rs
// A basket of fruits in the form of a hash map needs to be defined.
// The key represents the name of the fruit and the value represents
// how many of that particular fruit is in the basket. You have to put
@@ -8,7 +8,7 @@
//
// Make me compile and pass the tests!
//
-// Execute the command `rustlings hint hashmap1` if you need
+// Execute the command `rustlings hint hashmaps1` if you need
// hints.
// I AM NOT DONE
diff --git a/exercises/collections/hashmap2.rs b/exercises/hashmaps/hashmaps2.rs
index 0abe19a..1afb830 100644
--- a/exercises/collections/hashmap2.rs
+++ b/exercises/hashmaps/hashmaps2.rs
@@ -1,4 +1,4 @@
-// hashmap2.rs
+// hashmaps2.rs
// A basket of fruits in the form of a hash map is given. The key
// represents the name of the fruit and the value represents how many
@@ -9,7 +9,7 @@
//
// Make me pass the tests!
//
-// Execute the command `rustlings hint hashmap2` if you need
+// Execute the command `rustlings hint hashmaps2` if you need
// hints.
// I AM NOT DONE