Skip to content

Commit f3eaa05

Browse files
msingleSpaceK33z
authored andcommitted
Fix typo in template.md
1 parent a6c743e commit f3eaa05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/multi-part-library/template.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

@@ -42,4 +42,4 @@ Note: When your library has dependencies that should not be included in the comp
4242

4343
```
4444
{{min:stdout}}
45-
```
45+
```

0 commit comments

Comments
 (0)