Skip to content

Commit 88d9b3f

Browse files
authoredJan 18, 2023
removed -> remove; optimzed -> optimized ;
1 parent ea7738b commit 88d9b3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎1-js/13-modules/02-import-export/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ Well, there are few reasons.
9797
2. Explicit list of imports gives better overview of the code structure: what is used and where. It makes code support and refactoring easier.
9898

9999
```smart header="Don't be afraid to import too much"
100-
Modern build tools, such as [webpack](https://webpack.js.org/) and others, bundle modules together and optimize them to speedup loading. They also removed unused imports.
100+
Modern build tools, such as [webpack](https://webpack.js.org/) and others, bundle modules together and optimize them to speedup loading. They also remove unused imports.
101101
102-
For instance, if you `import * as library` from a huge code library, and then use only few methods, then unused ones [will not be included](https://github.com/webpack/webpack/tree/main/examples/harmony-unused#examplejs) into the optimzed bundle.
102+
For instance, if you `import * as library` from a huge code library, and then use only few methods, then unused ones [will not be included](https://github.com/webpack/webpack/tree/main/examples/harmony-unused#examplejs) into the optimized bundle.
103103
```
104104

105105
## Import "as"

0 commit comments

Comments
 (0)