From b0ee5e4708861ec82b3f039a3414af18760efc3a Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 14 Feb 2026 17:13:35 -0700 Subject: [PATCH] refactor: Simplify time code description format --- metar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metar.html b/metar.html index c95074c..2fec891 100644 --- a/metar.html +++ b/metar.html @@ -188,7 +188,7 @@ const day = code.substring(0, 2); const hours = code.substring(2, 4); const minutes = code.substring(4, 6); - return `${code}: On the ${day}th day of the month at ${hours}:${minutes} UTC`; + return `${code}: ${day} day at ${hours}:${minutes} UTC`; } function decodeWind(code) {