From cd06cfbeeeb183048bb12c4f40abeac69ff28f5c Mon Sep 17 00:00:00 2001 From: Scott Martin <43204121+scottmartin-ln@users.noreply.github.com> Date: Fri, 13 Sep 2019 12:41:07 +0100 Subject: [PATCH] Typo fix "agains" -> "against" --- 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 41ee4b96..d0fe63ef 100644 --- a/1-js/13-modules/02-import-export/article.md +++ b/1-js/13-modules/02-import-export/article.md @@ -275,7 +275,7 @@ let User = user.default; // the default export new User('John'); ``` -### A word agains default exports +### A word against default exports Named exports are explicit. They exactly name what they import, so we have that information from them, that's a good thing.