Skip to content

Commit 44c6ce8

Browse files
authored
Typo fix
"shorter named" -> "shorter names"
1 parent 3da7f48 commit 44c6ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/13-modules/01-modules-intro/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ Build tools do the following:
355355
- Unused exports removed ("tree-shaking").
356356
- Development-specific statements like `console` and `debugger` removed.
357357
- Modern, bleeding-edge JavaScript syntax may be transformed to older one with similar functionality using [Babel](https://babeljs.io/).
358-
- The resulting file is minified (spaces removed, variables replaced with shorter named etc).
358+
- The resulting file is minified (spaces removed, variables replaced with shorter names, etc).
359359
360360
If we use bundle tools, then as scripts are bundled together into a single file (or few files), `import/export` statements inside those scripts are replaced by special bundler functions. So the resulting "bundled" script does not contain any `import/export`, it doesn't require `type="module"`, and we can put it into a regular script:
361361

0 commit comments

Comments
 (0)