Skip to content

Commit 82b81eb

Browse files
committed
spelling: practice
1 parent 2c30ef3 commit 82b81eb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/common-chunk-grandchildren/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ module.exports = {
9393
},
9494
optimization: {
9595
splitChunks: {
96-
minSize: 0 // This example is too small, in pratice you can use the defaults
96+
minSize: 0 // This example is too small, in practice you can use the defaults
9797
},
9898
occurrenceOrder: true // To keep filename consistent between different modes (for example building only)
9999
},

examples/common-chunk-grandchildren/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
},
99
optimization: {
1010
splitChunks: {
11-
minSize: 0 // This example is too small, in pratice you can use the defaults
11+
minSize: 0 // This example is too small, in practice you can use the defaults
1212
},
1313
occurrenceOrder: true // To keep filename consistent between different modes (for example building only)
1414
},

examples/extra-async-chunk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The example entry references two chunks:
1616

1717
These chunks share modules `a` and `b`. The optimization extract these into chunk Z:
1818

19-
Note: Actually the optimization compare size of chunk Z to some minimum value, but this is disabled from this example. In pratice there is no configuration needed for this.
19+
Note: Actually the optimization compare size of chunk Z to some minimum value, but this is disabled from this example. In practice there is no configuration needed for this.
2020

2121
* entry chunk
2222
* async require -> chunk X & Z

examples/extra-async-chunk/template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The example entry references two chunks:
1616

1717
These chunks share modules `a` and `b`. The optimization extract these into chunk Z:
1818

19-
Note: Actually the optimization compare size of chunk Z to some minimum value, but this is disabled from this example. In pratice there is no configuration needed for this.
19+
Note: Actually the optimization compare size of chunk Z to some minimum value, but this is disabled from this example. In practice there is no configuration needed for this.
2020

2121
* entry chunk
2222
* async require -> chunk X & Z

0 commit comments

Comments
 (0)