Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Dec 30, 2024
1 parent 64aae11 commit aa16ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/vehicle-purchase/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Implement the `canIBuy(vehicle:price:monthlyBudget:)` function that takes the fo
- `monthlyBudget` - The amount of money you can afford to pay each month.

The function should return the following message based on the following conditions:
- If the monthly payment is less than or equal to the monthly budget, return the message `"Yes! I'm getting a <vehicle>"`.
- If the monthly payment of the vehicle is less than or equal to the monthly budget, return the message `"Yes! I'm getting a <vehicle>"`.
- If the monthly payment of the vehicle is within 10% your monthly budget, return the message `"I'll have to be frugal if I want a <vehicle>"`.
- If the monthly payment of the vehicle is more than 10% above your monthly budget, return the message `"Darn! No <vehicle> for me"`.

Expand Down

0 comments on commit aa16ddd

Please sign in to comment.