diff --git a/1-js/13-modules/02-import-export/article.md b/1-js/13-modules/02-import-export/article.md index c08340c5..9947131c 100644 --- a/1-js/13-modules/02-import-export/article.md +++ b/1-js/13-modules/02-import-export/article.md @@ -222,7 +222,7 @@ export default function(user) { // no function name export default ['Jan', 'Feb', 'Mar','Apr', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; ``` -That's fine, because `export default` is only one per file. Contrary to that, omitting a name for named imports would be an error: +Not giving a name is fine, because `export default` is only one per file. Contrary to that, omitting a name for named imports would be an error: ```js export class { // Error! (non-default export needs a name)