fix(curriculum): change spelling from travelling to to traveling (#64300)

This commit is contained in:
Giftea ☕
2025-12-03 22:36:49 +01:00
committed by GitHub
parent 5e5048c75c
commit cd07635997
2 changed files with 6 additions and 6 deletions

View File

@@ -10,9 +10,9 @@ dashedName: challenge-127
Given the speed you are traveling in miles per hour (MPH), and a speed limit in kilometers per hour (KPH), determine whether you are speeding and if you will get a warning or a ticket.
- 1 mile equals 1.60934 kilometers.
- If you are travelling less than or equal to the speed limit, return `"Not Speeding"`.
- If you are travelling 5 KPH or less over the speed limit, return `"Warning"`.
- If you are travelling more than 5 KPH over the speed limit, return `"Ticket"`.
- If you are traveling less than or equal to the speed limit, return `"Not Speeding"`.
- If you are traveling 5 KPH or less over the speed limit, return `"Warning"`.
- If you are traveling more than 5 KPH over the speed limit, return `"Ticket"`.
# --hints--

View File

@@ -10,9 +10,9 @@ dashedName: challenge-127
Given the speed you are traveling in miles per hour (MPH), and a speed limit in kilometers per hour (KPH), determine whether you are speeding and if you will get a warning or a ticket.
- 1 mile equals 1.60934 kilometers.
- If you are travelling less than or equal to the speed limit, return `"Not Speeding"`.
- If you are travelling 5 KPH or less over the speed limit, return `"Warning"`.
- If you are travelling more than 5 KPH over the speed limit, return `"Ticket"`.
- If you are traveling less than or equal to the speed limit, return `"Not Speeding"`.
- If you are traveling 5 KPH or less over the speed limit, return `"Warning"`.
- If you are traveling more than 5 KPH over the speed limit, return `"Ticket"`.
# --hints--