Skip to content

Commit a6c743e

Browse files
msingleSpaceK33z
authored andcommitted
Fix typo in README.md
1 parent d7bd255 commit a6c743e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/multi-part-library/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This example demonstrates how to build a complex library with webpack. The libra
22

33
When using this library with script tags it exports itself to the namespace `MyLibrary` and each part to a property in this namespace (`MyLibrary.alpha` and `MyLibrary.beta`). When consuming the library with CommonsJs or AMD it just export each part.
44

5-
We are using mutliple entry points (`entry` option) to build every part of the library as separate output file. The `output.filename` option contains `[name]` to give each output file a different name.
5+
We are using multiple entry points (`entry` option) to build every part of the library as separate output file. The `output.filename` option contains `[name]` to give each output file a different name.
66

77
We are using the `libraryTarget` option to generate a UMD ([Universal Module Definition](https://github.com/umdjs/umd)) module that is consumable in CommonsJs, AMD and with script tags. The `library` option defines the namespace. We are using `[name]` in the `library` option to give every entry a different namespace.
88

@@ -261,4 +261,4 @@ chunk {0} MyLibrary.beta.js (beta) 24 bytes [entry] [rendered]
261261
chunk {1} MyLibrary.alpha.js (alpha) 25 bytes [entry] [rendered]
262262
> alpha [0] ./alpha.js
263263
[0] ./alpha.js 25 bytes {1} [built]
264-
```
264+
```

0 commit comments

Comments
 (0)