From c3213d38f787a11215125fa5b4f77b83d535bfe0 Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Fri, 7 Feb 2020 00:37:33 -0700 Subject: [PATCH] Update article.md "allows to configure" -> "allows us to configure" --- 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 b69c7834..f915ba73 100644 --- a/1-js/13-modules/01-modules-intro/article.md +++ b/1-js/13-modules/01-modules-intro/article.md @@ -163,7 +163,7 @@ alert(admin.name); // Pete So, let's reiterate -- the module is executed only once. Exports are generated, and then they are shared between importers, so if something changes the `admin` object, other modules will see that. -Such behavior allows to *configure* modules on first import. We can setup its properties once, and then in further imports it's ready. +Such behavior allows us to *configure* modules on first import. We can setup its properties once, and then in further imports it's ready. For instance, the `admin.js` module may provide certain functionality, but expect the credentials to come into the `admin` object from outside: