Corrected grammar

This commit is contained in:
Violet.Lee 2019-04-25 09:32:32 +09:00 committed by GitHub
parent 4c2ab7343d
commit 190f0de0b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ### 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. That has important consequences. Let's see that on examples.