From 8aca4e71ce9eaa3af15e664a524051572379265f Mon Sep 17 00:00:00 2001 From: Varpie Date: Wed, 3 Jul 2024 00:12:43 +0200 Subject: [PATCH] Fix Monday bonus hint The `dict_values` function doesn't exist on gleam/dict, but `map_values` exists. --- exercises/concept/high-score-board/.docs/hints.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/concept/high-score-board/.docs/hints.md b/exercises/concept/high-score-board/.docs/hints.md index ce4aafb0..ffc08363 100644 --- a/exercises/concept/high-score-board/.docs/hints.md +++ b/exercises/concept/high-score-board/.docs/hints.md @@ -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