Skip to content

Commit af09758

Browse files
authored
typo: fix the spelling of licence to license (#2269)
1 parent acfaae2 commit af09758

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

exercises/concept/vehicle-purchase/.docs/hints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Hints
22

3-
## 1. Determine if you will need a drivers licence
3+
## 1. Determine if you will need a drivers license
44

55
- Use the [strict equals operator][mdn-equality-operators] to check whether your input equals a certain string.
66
- Use one of the two [logical operators][mdn-logical-operators] you learned about in the boolean concept to combine the two requirements.

exercises/concept/vehicle-purchase/.docs/instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

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

5-
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.
5+
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.
66

7-
## 1. Determine if you will need a drivers licence
7+
## 1. Determine if you will need a drivers license
88

99
Some kinds of vehicles require a drivers license to operate them.
1010
Assume only the kinds `'car'` and `'truck'` require a license, everything else can be operated without a license.

exercises/concept/vehicle-purchase/.meta/exemplar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// implementing this exercise.
66

77
/**
8-
* Determines whether or not you need a licence to operate a certain kind of vehicle.
8+
* Determines whether or not you need a license to operate a certain kind of vehicle.
99
*
1010
* @param {string} kind
1111
* @returns {boolean} whether a license is required

exercises/concept/vehicle-purchase/vehicle-purchase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// implementing this exercise.
66

77
/**
8-
* Determines whether or not you need a licence to operate a certain kind of vehicle.
8+
* Determines whether or not you need a license to operate a certain kind of vehicle.
99
*
1010
* @param {string} kind
1111
* @returns {boolean} whether a license is required

0 commit comments

Comments
 (0)