From 190f0de0b1025c6899aa557a156fb29f160580db Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Thu, 25 Apr 2019 09:32:32 +0900 Subject: [PATCH] Corrected grammar --- 1-js/13-modules/01-modules-intro/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/13-modules/01-modules-intro/article.md b/1-js/13-modules/01-modules-intro/article.md index 5c853540..ad4f2106 100644 --- a/1-js/13-modules/01-modules-intro/article.md +++ b/1-js/13-modules/01-modules-intro/article.md @@ -105,7 +105,7 @@ If we really need to make a "global" in-browser variable, we can explicitly assi ### A module code is evaluated only the first time when imported -If a same module is imported into multiple other places, it's code is executed only the first time, then exports are given to all importers. +If the same module is imported into multiple other places, its code is executed only the first time, then exports are given to all importers. That has important consequences. Let's see that on examples.