summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfmoko <mokou@fastmail.com>2021-07-07 22:16:45 +0200
committerGitHub <noreply@github.com>2021-07-07 22:16:45 +0200
commitc8e4b357a326ea2b10fe9b48ea534c22e3a00cd9 (patch)
treee40ed6ee617dc834f85f25b0fa2387394ea83001
parentcdd8e19716fbe91eaa0825d0475dc6c1eddc8b29 (diff)
parent8774e47dc34c8a7929a8b7d7504999028935ff6e (diff)
Merge pull request #795 from lauralindzey/docs/section-mapping
docs: Update exercise to chapter mapping for HashMap
-rw-r--r--exercises/README.md2
-rw-r--r--exercises/collections/README.md1
2 files changed, 2 insertions, 1 deletions
diff --git a/exercises/README.md b/exercises/README.md
index 0c71524..eebbd0b 100644
--- a/exercises/README.md
+++ b/exercises/README.md
@@ -10,7 +10,7 @@
| structs | §5.1 |
| enums | §6 |
| modules | §7.2 |
-| collections | §8.1 |
+| collections | §8.1, §8.3 |
| strings | §8.2 |
| error_handling | §9 |
| generics | §10 |
diff --git a/exercises/collections/README.md b/exercises/collections/README.md
index 0291bc8..b6d62ac 100644
--- a/exercises/collections/README.md
+++ b/exercises/collections/README.md
@@ -20,3 +20,4 @@ structures that are used very often in Rust programs:
## Further information
- [Storing Lists of Values with Vectors](https://doc.rust-lang.org/stable/book/ch08-01-vectors.html)
+- [Storing Keys with Associated Values in Hash Maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html)