From 79c4023e56b3f8da58edca0af26e662a6ba281df Mon Sep 17 00:00:00 2001 From: DouglasMV <32845487+DouglasMV@users.noreply.github.com> Date: Wed, 26 Jun 2019 16:07:25 -0300 Subject: [PATCH] Fixed sentence --- 1-js/05-data-types/10-date/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/10-date/article.md b/1-js/05-data-types/10-date/article.md index 8a75f1cb..f8628d88 100644 --- a/1-js/05-data-types/10-date/article.md +++ b/1-js/05-data-types/10-date/article.md @@ -49,7 +49,7 @@ To create a new `Date` object call `new Date()` with one of the following argume ``` `new Date(year, month, date, hours, minutes, seconds, ms)` -: Create the date with the given components in the local time zone. Only two first arguments are obligatory. +: Create the date with the given components in the local time zone. Only the first two arguments are obligatory. Note: