Merge pull request #939 from Violet-Bora-Lee/patch-1

Corrected grammar
This commit is contained in:
Ilya Kantor 2019-04-25 09:13:42 +02:00 committed by GitHub
commit 340c14710b
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
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.