Skip to content

Commit 774d0c1

Browse files
authored
Merge pull request #3326 from sagarpanchal/patch-2
Typo/grammar corrections in the import-export article
2 parents f24e463 + 88d9b3f commit 774d0c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ 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
102102
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
```

0 commit comments

Comments
 (0)