Skip to content

Commit c3213d3

Browse files
authored
Update article.md
"allows to configure" -> "allows us to configure"
1 parent bd0fbf9 commit c3213d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/13-modules/01-modules-intro/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ alert(admin.name); // Pete
163163

164164
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.
165165

166-
Such behavior allows to *configure* modules on first import. We can setup its properties once, and then in further imports it's ready.
166+
Such behavior allows us to *configure* modules on first import. We can setup its properties once, and then in further imports it's ready.
167167

168168
For instance, the `admin.js` module may provide certain functionality, but expect the credentials to come into the `admin` object from outside:
169169

0 commit comments

Comments
 (0)