From 42f0985b286e051573e78053bd365fa37cabacd2 Mon Sep 17 00:00:00 2001 From: caspringer Date: Wed, 5 Dec 2018 08:47:29 -0500 Subject: [PATCH] Fix comma usage --- 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 00390812..7a87dfd0 100644 --- a/1-js/05-data-types/10-date/article.md +++ b/1-js/05-data-types/10-date/article.md @@ -2,7 +2,7 @@ Let's meet a new built-in object: [Date](mdn:js/Date). It stores the date, time and provides methods for date/time management. -For instance, we can use it to store creation/modification times, or to measure time, or just to print out the current date. +For instance, we can use it to store creation/modification times, to measure time, or just to print out the current date. ## Creation