Merge pull request #1354 from Violet-Bora-Lee/patch-35

Fix typo
This commit is contained in:
Ilya Kantor 2019-09-18 12:47:05 +03:00 committed by GitHub
commit be9a339285
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,5 +94,5 @@ Dynamic imports work in regular scripts, they don't require `script type="module
```smart ```smart
Although `import()` looks like a function call, it's a special syntax that just happens to use parentheses (similar to `super()`). Although `import()` looks like a function call, it's a special syntax that just happens to use parentheses (similar to `super()`).
So we can't copy `import` to a variable or use `.call/apply` with it. That's not a function. So we can't copy `import` to a variable or use `call/apply` with it. That's not a function.
``` ```