Merge pull request #2021 from matthewjnield/main

fix: Add clarification to instructions for hashmaps2.rs
This commit is contained in:
Mo 2024-07-05 15:52:20 +02:00 committed by GitHub
commit 9e2ff7d037
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,8 @@
// Apple (4), Mango (2) and Lychee (5) are already in the basket hash map. You
// must add fruit to the basket so that there is at least one of each kind and
// more than 11 in total - we have a lot of mouths to feed. You are not allowed
// to insert any more of these fruits!
// to insert any more of the fruits that are already in the basket (Apple,
// Mango, and Lyche).
use std::collections::HashMap;