From 0d0d385b3eecbc88e6fb10f99a953aab2ce90202 Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Thu, 14 May 2026 17:16:38 +0100 Subject: [PATCH] Fix variable names Currently they're the wrong way around, which isn't the point of the exercise. --- Sprint-1/2-mandatory-errors/4.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sprint-1/2-mandatory-errors/4.js b/Sprint-1/2-mandatory-errors/4.js index 21dad8c5d1..5f86c730bc 100644 --- a/Sprint-1/2-mandatory-errors/4.js +++ b/Sprint-1/2-mandatory-errors/4.js @@ -1,2 +1,2 @@ -const 12HourClockTime = "20:53"; -const 24hourClockTime = "08:53"; \ No newline at end of file +const 12HourClockTime = "8:53pm"; +const 24hourClockTime = "20:53";