Update article.md

"That's not a function" -> "It's not a function"
This commit is contained in:
Peter Roche 2020-02-08 16:39:17 -07:00 committed by GitHub
parent 08720f059a
commit 2fee345f6e
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
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. It's not a function.
```