From e9d2478e8117aee2eedc310d58ff7e21da8928f5 Mon Sep 17 00:00:00 2001 From: Alexander Minges Date: Wed, 24 Jul 2024 14:23:11 +0200 Subject: [PATCH] fix typo in comment --- apps/ffcniftyapp/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ffcniftyapp/app.js b/apps/ffcniftyapp/app.js index 4a11caca6..5ca48c2f1 100644 --- a/apps/ffcniftyapp/app.js +++ b/apps/ffcniftyapp/app.js @@ -175,7 +175,7 @@ const clock = new ClockFace({ if (locale.name === "en" || locale.name === "en_GB" || locale.name === "en_US") { w_icon = chooseIcon(curr.txt === undefined ? "no data" : curr.txt); } else { - // cannot use condition string to determine icon of language is not English; use weather code instead + // cannot use condition string to determine icon if language is not English; use weather code instead const code = curr.code || -1; if (code > 0) { w_icon = chooseIconByCode(curr.code);