Skip to content

Commit b189a08

Browse files
authored
fix typos (#3750)
Remove additional apostrophe in _of that dish's' ingredients._ Remove extra _in_ in _Within in each category_.
1 parent cf0f7c0 commit b189a08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/concept/cater-waiter/.docs/instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Implement the `check_drinks(<drink_name>, <drink_ingredients>)` function that ta
4242

4343
The guest list includes diners with different dietary needs, and your staff will need to separate the dishes into Vegan, Vegetarian, Paleo, Keto, and Omnivore.
4444

45-
Implement the `categorize_dish(<dish_name>, <dish_ingredients>)` function that takes a dish name and a `set` of that dish's' ingredients.
45+
Implement the `categorize_dish(<dish_name>, <dish_ingredients>)` function that takes a dish name and a `set` of that dish's ingredients.
4646
The function should return a string with the `dish name: <CATEGORY>` (_which meal category the dish belongs to_).
4747
All dishes will "fit" into one of the categories imported from `sets_categories_data.py` (VEGAN, VEGETARIAN, PALEO, KETO, or OMNIVORE).
4848

@@ -125,7 +125,7 @@ appetizers = ['Kingfish Lettuce Cups','Avocado Deviled Eggs','Satay Steak Skewer
125125

126126
## 7. Find Ingredients Used in Only One Recipe
127127

128-
Within in each category (_Vegan, Vegetarian, Paleo, Keto, Omnivore_), you're going to pull out ingredients that appear in only one dish.
128+
Within each category (_Vegan, Vegetarian, Paleo, Keto, Omnivore_), you're going to pull out ingredients that appear in only one dish.
129129
These "singleton" ingredients will be assigned a special shopper to ensure they're not forgotten in the rush to get everything else done.
130130

131131
Implement the `singleton_ingredients(<dishes>, <INTERSECTIONS>)` function that takes a `list` of dishes and a `<CATEGORY>_INTERSECTIONS` constant for the same category.

0 commit comments

Comments
 (0)