Skip to content

Commit

Permalink
Update instructions.md
Browse files Browse the repository at this point in the history
Inconsistency in instructions and what tests expect.
  • Loading branch information
dissolved authored Aug 3, 2023
1 parent a596065 commit f968a02
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 @@ -38,7 +38,7 @@ The function should return the following message based on the following conditio
- If the number of wheels is 2 or 3, return the message `"You will need a motorcycle license for your vehicle"`.
- If the number of wheels is 4 or 6, return the message `"You will need an automobile license for your vehicle"`.
- If the number of wheels is 18, return the message `"You will need a commercial trucking license for your vehicle"`.
- If the number is any other number, return the message `"There is no license for such vehicle"`.
- If the number is any other number, return the message `"We do not issue licenses for those types of vehicles"`.

```swift
licenseType(numberOfWheels: 2)
Expand Down

0 comments on commit f968a02

Please sign in to comment.