Skip to content

Commit f3e7677

Browse files
authored
[Mecha Munch Management]: Fix Typo in instructions.md (#3874)
`'Apple': 1` was missing from results dict on Task 3 examples.
1 parent 07c8115 commit f3e7677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/mecha-munch-management/.docs/instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The function should return the new/updated "ideas" dictionary.
6262
(('Banana Bread', {'Banana': 4, 'Walnuts': 2, 'Flour': 1, 'Butter': 1, 'Milk': 2, 'Eggs': 3}),))
6363
...
6464

65-
{'Banana Bread' : {'Banana': 4, 'Walnuts': 2, 'Flour': 1, 'Butter': 1, 'Milk': 2, 'Eggs': 3},
65+
{'Banana Bread' : {'Banana': 4, 'Apple': 1, 'Walnuts': 2, 'Flour': 1, 'Butter': 1, 'Milk': 2, 'Eggs': 3},
6666
'Raspberry Pie' : {'Raspberry': 1, 'Orange': 1, 'Pie Crust': 1, 'Cream Custard': 1}}
6767

6868
>>> update_recipes({'Banana Bread' : {'Banana': 1, 'Apple': 1, 'Walnuts': 1, 'Flour': 1, 'Eggs': 2, 'Butter': 1},

0 commit comments

Comments
 (0)