Skip to content

Commit

Permalink
Fix a small typo (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
uggla authored Dec 13, 2024
1 parent 8983495 commit d353d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion challenges/animal-sanctuary-registry/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Hashmaps are a powerful data structure that allow you to store **key-value pairs**. In Rust, the `HashMap` type is provided that uses the a **hashing algorithm** called **SipHash** to store keys and values in a way that allows for **fast and secure** lookups. Think of them as a dictionary in Python or an object in JavaScript.

In this challenge, we want to build a sanctuary registry that allows us to manage animals in different sections of the sanctuary. We'll use a `HashMap` to store the sections as keys and a `Vec` to store the animals in each section. Each key is a section name `String` and each value is a list of animals in that section `Vev<String>`.
In this challenge, we want to build a sanctuary registry that allows us to manage animals in different sections of the sanctuary. We'll use a `HashMap` to store the sections as keys and a `Vec` to store the animals in each section. Each key is a section name `String` and each value is a list of animals in that section `Vec<String>`.

## Task

Expand Down

0 comments on commit d353d10

Please sign in to comment.