refactor: Simplify time code description format

This commit is contained in:
2026-02-14 17:13:35 -07:00
committed by Tanner Collin (aider)
parent 75cb5327d3
commit b0ee5e4708
+1 -1
View File
@@ -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) {