diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/691b559495c5cb5a37b9b487.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/691b559495c5cb5a37b9b487.md index 9fb04f5d018..8a4e4e01e84 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/691b559495c5cb5a37b9b487.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/691b559495c5cb5a37b9b487.md @@ -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-- diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/691b559495c5cb5a37b9b487.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/691b559495c5cb5a37b9b487.md index 99e4091fd39..0a94c636b4c 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/691b559495c5cb5a37b9b487.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/691b559495c5cb5a37b9b487.md @@ -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--