From 436d2a5586643622d18b10dfc4a9c86cdd0c5e5f Mon Sep 17 00:00:00 2001 From: kheremos Date: Tue, 17 Mar 2026 15:52:22 -0700 Subject: [PATCH] Update hints.md - Fix Typo Some may be confused and thing dict[] was intended. --- exercises/concept/inventory-management/.docs/hints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/inventory-management/.docs/hints.md b/exercises/concept/inventory-management/.docs/hints.md index dbdfe09ae79..14fab1f150c 100644 --- a/exercises/concept/inventory-management/.docs/hints.md +++ b/exercises/concept/inventory-management/.docs/hints.md @@ -9,7 +9,7 @@ - You need a [for loop][for-loop] to iterate the list of items, then insert each item in the dictionary if missing and increment the item count using the dictionary accessor. - You can use [`dict.setdefault`][dict setdefault] to make sure the value is set before incrementing the count of the item. -- This function should [return][return-keyword] a dict]. +- This function should [return][return-keyword] a dict. ## 2. Add items from a list to an existing dictionary