Skip to content

Commit 729cbed

Browse files
committed
Merge pull request webpack#2488 from myshov/patch-2
Fix small typos in Readme
2 parents 93f3813 + 5719484 commit 729cbed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ or packaging just about any resource or asset.
2727

2828
**TL; DR**
2929

30-
* Bundles both [CommonJs](http://wiki.commonjs.org/) and [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules (even combined).
30+
* Bundles both [CommonJS](http://wiki.commonjs.org/) and [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules (even combined).
3131
* Can create a single bundle or multiple chunks that are asynchronously loaded at runtime (to reduce initial loading time).
3232
* Dependencies are resolved during compilation reducing the runtime size.
3333
* Loaders can preprocess files while compiling, e.g. coffeescript to JavaScript, handlebars strings to compiled functions, images to Base64, etc.
@@ -158,7 +158,7 @@ friendly** by using hashes.
158158
// This means webpack takes modules with dependencies
159159
// and emits static assets representing those modules.
160160

161-
// Dependencies can be written in CommonJs
161+
// Dependencies can be written in CommonJS
162162
var commonjs = require("./commonjs");
163163
// or in AMD
164164
define(["amd-module", "../file"], function (amdModule, file) {

0 commit comments

Comments
 (0)