Skip to content

Commit

Permalink
Fix Monday bonus hint
Browse files Browse the repository at this point in the history
The `dict_values` function doesn't exist on gleam/dict, but `map_values` exists.
  • Loading branch information
Varpie authored and giacomocavalieri committed Jul 3, 2024
1 parent 6a9c6a1 commit 8aca4e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/high-score-board/.docs/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@

## 5. Apply Monday bonus points

- The [`dict.dict_values`][dict_values] function can be used to modify all the values in a dict.
- The [`dict.map_values`][map_values] function can be used to modify all the values in a dict.

[new]: https://hexdocs.pm/gleam_stdlib/gleam/dict.html#new
[get]: https://hexdocs.pm/gleam_stdlib/gleam/dict.html#get
[insert]: https://hexdocs.pm/gleam_stdlib/gleam/dict.html#insert
[delete]: https://hexdocs.pm/gleam_stdlib/gleam/dict.html#delete
[from_list]: https://hexdocs.pm/gleam_stdlib/gleam/dict.html#from_list
[dict_values]: https://hexdocs.pm/gleam_stdlib/gleam/dict.html#dict_values
[map_values]: https://hexdocs.pm/gleam_stdlib/gleam/dict.html#map_values

0 comments on commit 8aca4e7

Please sign in to comment.