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.