From ac5fea2c644601c3ad49aa938eaad2b0aec57410 Mon Sep 17 00:00:00 2001 From: Xaloc Date: Tue, 23 Aug 2022 11:26:09 +0200 Subject: [PATCH] Fix typo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 7727396..48c1c15 100644 --- a/index.html +++ b/index.html @@ -100,7 +100,7 @@ var time = times.validTime[1].replace(/-/g, "").replace(/:/g, ""); var textTime = new Date(times.validTime[1]).toLocaleString("en-GB", {dateStyle: "short", timeStyle: "short"}); var textTimeUTC = new Date(times.validTime[1]).toLocaleTimeString("en-GB", {timeZone: "UTC", timeStyle: "short"}); - document.getElementById('clouds').textContent = "Cloud Coverage Forcast for " + textTime + " (" + textTimeUTC+" UTC)"; + document.getElementById('clouds').textContent = "Cloud Coverage Forecast for " + textTime + " (" + textTimeUTC+" UTC)"; const res = await fetch(`https://opendata-download-metfcst.smhi.se/api/category/pmp3g/version/2/geotype/multipoint/validtime/${time}/parameter/tcc_mean/leveltype/hl/level/0/data.json`); const data = await res.json();