From 6c800d71ca4cd7d6adbd2278ec11afc0d2ca8606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1oriander?= <36999873+carbonid1@users.noreply.github.com> Date: Fri, 6 Apr 2018 19:15:00 +0300 Subject: [PATCH] Corrected a few mistakes in English. As far as I know, the first letter in the word "European"/days of the week should be capitalized. --- 1-js/05-data-types/10-date/3-weekday/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/10-date/3-weekday/task.md b/1-js/05-data-types/10-date/3-weekday/task.md index c2ae2168b0..ba62790cf7 100644 --- a/1-js/05-data-types/10-date/3-weekday/task.md +++ b/1-js/05-data-types/10-date/3-weekday/task.md @@ -4,7 +4,7 @@ importance: 5 # European weekday -European countries have days of week starting with monday (number 1), then tuesday (number 2) and till sunday (number 7). Write a function `getLocalDay(date)` that returns the "european" day of week for `date`. +European countries have days of week starting with Monday (number 1), then Tuesday (number 2) and till Sunday (number 7). Write a function `getLocalDay(date)` that returns the "European" day of week for `date`. ```js no-beautify let date = new Date(2012, 0, 3); // 3 Jan 2012