Skip to content

Commit 3f8b1d7

Browse files
committed
Correct several typos and grammar mistakes
1 parent e168267 commit 3f8b1d7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

game_menu.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def menu_string(stats, text_time_of_day):
109109
if not stats["location"]["1"]["purchased"]:
110110
action_loc = "ACTION REQUIRED"
111111

112-
game_id = f'(GAME ID : {cyan(stats["user_id"])})'
112+
game_id = f'(Game ID : {cyan(stats["user_id"])})'
113113
company_name = stats['name']
114114
day = floor(stats["day"])
115115

@@ -146,7 +146,7 @@ def purchase_location(stats):
146146
print(f'{cyan("Purchase hotdog pitch locations")}')
147147
print('------------------------------------')
148148
print(f'Current balance {green(print_current_balance(stats))}\n')
149-
print('Each location purchase means more customer to sell to. '
149+
print('Each location purchase means more customers to sell to. '
150150
+ 'The better the location \nthe more potential customers.\n')
151151
print(f'{pink("TIP")}: Each location will need a cart and a staff '
152152
+ 'member before they sell any \nhotdogs.\n')
@@ -229,10 +229,10 @@ def purchase_cart_menu(stats):
229229
print(f'Current balance {green(print_current_balance(stats))}\n')
230230
print('Each upgrade on a cart will produce better quality hotdogs.'
231231
+ f' So you will sell {constants.CART_SELLING_INCREASE}% more'
232-
+ ' for each level on top the base selling price without an'
233-
+ 'penelties at that \nlocation.')
232+
+ ' for each level on top the base selling price without any'
233+
+ ' penelties at that \nlocation.')
234234
print(f'\n{pink("TIP")}: Each location will need a staff member'
235-
+ 'before they sell any hotdogs.\n')
235+
+ ' before they sell any hotdogs.\n')
236236

237237
for count, key in enumerate(loc_name, start=1):
238238
cart_level = stats['location'][str(count)]['cart_lvl']
@@ -553,7 +553,7 @@ def validate_recipe_change(data):
553553

554554
print_go_back()
555555

556-
print(f'\n{pink("HOW: ")}To update your recipe ty0pe the ingrediant'
556+
print(f'\n{pink("HOW: ")}To update your recipe type the ingredient'
557557
+ ' and amount i.e. "3 4".')
558558
result = input(f'\n{orange("Enter change i.e. 3 4: ")}')
559559

0 commit comments

Comments
 (0)