From fd97470f3551e5c068dc796f25320ebb5b93a08c Mon Sep 17 00:00:00 2001 From: mo8it Date: Thu, 8 Aug 2024 00:42:26 +0200 Subject: [PATCH] Adapt type name in hint --- rustlings-macros/info.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml index 2ecb226..504bfd9 100644 --- a/rustlings-macros/info.toml +++ b/rustlings-macros/info.toml @@ -571,7 +571,7 @@ name = "hashmaps3" dir = "11_hashmaps" hint = """ Hint 1: Use the `entry()` and `or_insert()` (or `or_insert_with()`) methods of - `HashMap` to insert the default value of `Team` if a team doesn't + `HashMap` to insert the default value of `TeamScores` if a team doesn't exist in the table yet. Learn more in The Book: