From 087d09a48d3bad6d4c5ef0ecc74cbe5de4ec1e77 Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Wed, 18 Sep 2019 04:14:13 +0900 Subject: [PATCH] Fix typo --- 1-js/13-modules/03-modules-dynamic-imports/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/13-modules/03-modules-dynamic-imports/article.md b/1-js/13-modules/03-modules-dynamic-imports/article.md index 83b85b55..b638fd34 100644 --- a/1-js/13-modules/03-modules-dynamic-imports/article.md +++ b/1-js/13-modules/03-modules-dynamic-imports/article.md @@ -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. That's not a function. ```