From 2758a76b84a8338120bff7272e0a3f1aca24c4d9 Mon Sep 17 00:00:00 2001 From: Andrea Vos Date: Fri, 24 Sep 2021 18:35:05 +0200 Subject: [PATCH] fix typo --- locale/en/events.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/locale/en/events.js b/locale/en/events.js index 62b363c32..05757708c 100644 --- a/locale/en/events.js +++ b/locale/en/events.js @@ -61,7 +61,7 @@ module.exports = [ }, EventLevel.MajorDay), new Event('Spirit Day', null, 10, function* (monthDays) { - let fridays = 0; + let thursdays = 0; for (let d of monthDays) { if (d.dayOfWeek === 4) { thursdays++; @@ -83,7 +83,7 @@ module.exports = [ yield lastFriday; }, EventLevel.MajorDay), - new Event('Purple Friday (UK)', null, 2, function* (monthDays) { + new Event('Purple Friday (UK)', null, 2, function* (monthDays) { let lastFriday = null; for (let d of monthDays) { if (d.dayOfWeek === 5) { @@ -93,7 +93,7 @@ module.exports = [ yield lastFriday; }, EventLevel.MajorDay), - new Event('Rainbow Friday (Poland)', null, 10, function* (monthDays) { + new Event('Rainbow Friday (Poland)', null, 10, function* (monthDays) { let lastFriday = null; for (let d of monthDays) { if (d.dayOfWeek === 5) {