From ad6ec87f3a3dc1074780bcbc69e0fb1cd832da99 Mon Sep 17 00:00:00 2001 From: imPROgramer Date: Sun, 18 Nov 2018 12:59:57 -0500 Subject: [PATCH] strict mode Original statement sounded like there are multiple strict mode.It's more clear this way. --- 1-js/02-first-steps/03-strict-mode/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/03-strict-mode/article.md b/1-js/02-first-steps/03-strict-mode/article.md index 35b4ef2b..6864078b 100644 --- a/1-js/02-first-steps/03-strict-mode/article.md +++ b/1-js/02-first-steps/03-strict-mode/article.md @@ -51,7 +51,7 @@ Once we enter the strict mode, there's no return. The differences of `"use strict"` versus the "default" mode are still to be covered. -In the next chapters, as we learn language features, we'll make notes about the differences of the strict mode. Luckily, there are not so many. And they actually make our life better. +In the next chapters, as we learn language features, we'll make notes about the differences of the strict and default mode. Luckily, there are not so many. And they actually make our life better. At this point in time it's enough to know about it in general: