Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exercise typos #361

Merged
merged 2 commits into from
Oct 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/concept/pizza-pricing/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Customers can also choose two additional options for a small additional fee:
1. Extra sauce: \$1
1. Extra toppings: \$2

When customers place and order, an additional fee is added if they only order one or two pizzas:
When customers place an order, an additional fee is added if they only order one or two pizzas:

- 1 pizza: \$3
- 2 pizzas: \$2
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/weather-ranking/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tori is a climate journalist and she wants to write an article about the weather

## 1. Convert Fahrenheit to Celsius

Define a the `fahrenheit_to_celsius` function that takes a temperature in Fahrenheit as an argument and returns the temperature in Celsius.
Define the `fahrenheit_to_celsius` function that takes a temperature in Fahrenheit as an argument and returns the temperature in Celsius.

To convert Fahrenheit to Celsius subtract 32 from the Fahrenheit value, and then divide the result by 1.8.

Expand Down
Loading