From 49bc62eee9ade971cbf7b2c67e5a4fa2ffa7602c Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Tue, 17 Sep 2019 03:00:26 +0900 Subject: [PATCH] Fix typo --- 1-js/13-modules/02-import-export/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/13-modules/02-import-export/article.md b/1-js/13-modules/02-import-export/article.md index d0fe63ef..c0bc5f96 100644 --- a/1-js/13-modules/02-import-export/article.md +++ b/1-js/13-modules/02-import-export/article.md @@ -305,7 +305,7 @@ import func from '/path/to/func.js'; ... ``` -Still, some teams consider it a serous drawback of default exports. So they prefer to always use named exports. Even if only a single thing is exported, it's still exported under a name, without `default`. +Still, some teams consider it a serious drawback of default exports. So they prefer to always use named exports. Even if only a single thing is exported, it's still exported under a name, without `default`. That also makes re-export (see below) a little bit easier.