summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorMickael Fortunato <morsi.morsicus@gmail.com>2021-03-18 18:39:22 +0100
committerMickael Fortunato <morsi.morsicus@gmail.com>2021-03-18 19:11:04 +0100
commitbef39b125961310b34b34871e480a82e82af4678 (patch)
treee117a955c773660383c1d2fed7d4e79e07394753 /info.toml
parent0d894e6ff739943901e1ae8c904582e5c2f843bd (diff)
fix(collections): Naming exercises for vectors and hashmap
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/info.toml b/info.toml
index 2068750..baae76a 100644
--- a/info.toml
+++ b/info.toml
@@ -359,7 +359,7 @@ each constant."""
# COLLECTIONS
[[exercises]]
-name = "collections1"
+name = "vec1"
path = "exercises/collections/vec1.rs"
mode = "test"
hint = """
@@ -373,7 +373,7 @@ of the Rust book to learn more.
"""
[[exercises]]
-name = "collections2"
+name = "vec2"
path = "exercises/collections/vec2.rs"
mode = "test"
hint = """
@@ -383,7 +383,7 @@ Hint 2: Check the suggestion from the compiler error ;)
"""
[[exercises]]
-name = "collections3"
+name = "hashmap1"
path = "exercises/collections/hashmap1.rs"
mode = "test"
hint = """
@@ -394,7 +394,7 @@ Hint 2: Number of fruits should be at least 5. And you have to put
"""
[[exercises]]
-name = "collections4"
+name = "hashmap2"
path = "exercises/collections/hashmap2.rs"
mode = "test"
hint = """