We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa20a9 commit 73c1951Copy full SHA for 73c1951
1 file changed
examples/code-splitting/README.md
@@ -1,6 +1,6 @@
1
-This example illustrate a very simple case of Code Splitting with `require.ensure`.
+This example illustrates a very simple case of Code Splitting with `require.ensure`.
2
3
-* `a` and `b` are required normally via CommonsJs
+* `a` and `b` are required normally via CommonJS
4
* `c` is depdended through the `require.ensure` array.
5
* This means: make it available, but don't execute it
6
* webpack will load it on demand
@@ -12,7 +12,7 @@ This example illustrate a very simple case of Code Splitting with `require.ensur
12
13
You can see that webpack outputs two files/chunks:
14
15
-* `output.js` is the entry chunks and contains
+* `output.js` is the entry chunk and contains
16
* the module system
17
* chunk loading logic
18
* the entry point `example.js`
0 commit comments