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

typo: fix the spelling of licence to license #2269

Merged
merged 1 commit into from
Sep 15, 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/vehicle-purchase/.docs/hints.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hints

## 1. Determine if you will need a drivers licence
## 1. Determine if you will need a drivers license

- Use the [strict equals operator][mdn-equality-operators] to check whether your input equals a certain string.
- Use one of the two [logical operators][mdn-logical-operators] you learned about in the boolean concept to combine the two requirements.
Expand Down
4 changes: 2 additions & 2 deletions exercises/concept/vehicle-purchase/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

In this exercise, you will write some code to help you prepare to buy a vehicle.

You have three tasks, one to determine if you will need to get a licence, one to help you choose between two vehicles and one to estimate the acceptable price for a used vehicle.
You have three tasks, one to determine if you will need to get a license, one to help you choose between two vehicles and one to estimate the acceptable price for a used vehicle.

## 1. Determine if you will need a drivers licence
## 1. Determine if you will need a drivers license

Some kinds of vehicles require a drivers license to operate them.
Assume only the kinds `'car'` and `'truck'` require a license, everything else can be operated without a license.
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/vehicle-purchase/.meta/exemplar.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// implementing this exercise.

/**
* Determines whether or not you need a licence to operate a certain kind of vehicle.
* Determines whether or not you need a license to operate a certain kind of vehicle.
*
* @param {string} kind
* @returns {boolean} whether a license is required
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/vehicle-purchase/vehicle-purchase.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// implementing this exercise.

/**
* Determines whether or not you need a licence to operate a certain kind of vehicle.
* Determines whether or not you need a license to operate a certain kind of vehicle.
*
* @param {string} kind
* @returns {boolean} whether a license is required
Expand Down