Skip to content

Commit

Permalink
[Mecha Munch Management]: Fix Typo in instructions.md (#3874)
Browse files Browse the repository at this point in the history
`'Apple': 1` was missing from results dict on Task 3 examples.
  • Loading branch information
BethanyG authored Feb 21, 2025
1 parent 07c8115 commit f3e7677
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The function should return the new/updated "ideas" dictionary.
(('Banana Bread', {'Banana': 4, 'Walnuts': 2, 'Flour': 1, 'Butter': 1, 'Milk': 2, 'Eggs': 3}),))
...

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

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

0 comments on commit f3e7677

Please sign in to comment.