Skip to content

Commit fc3c071

Browse files
committed
minor fixes
1 parent 70bb265 commit fc3c071

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
@@ -188,7 +188,7 @@ That's exactly because the module is executed only once. Exports are generated,
188188

189189
In other words, a module can provide a generic functionality that needs a setup. E.g. authentication needs credentials. Then it can export a configuration object expecting the outer code to assign to it.
190190

191-
Here's a classical pattern:
191+
Here's the classical pattern:
192192
1. A module exports some means of configuration, e.g. a configuration object.
193193
2. On the first import we initialize it, write to its properties. The top-level application script may do that.
194194
3. Further imports use the module.

0 commit comments

Comments
 (0)