From cd076359977cd643a2b4917d30b053fbb0eb8351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giftea=20=E2=98=95?= Date: Wed, 3 Dec 2025 22:36:49 +0100 Subject: [PATCH] fix(curriculum): change spelling from travelling to to traveling (#64300) --- .../691b559495c5cb5a37b9b487.md | 6 +++--- .../691b559495c5cb5a37b9b487.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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--