all: typo fixes

This commit is contained in:
ferhat elmas 2018-07-09 22:48:12 +02:00
parent 499cb3cec2
commit 271b77d45f
11 changed files with 13 additions and 13 deletions

View File

@ -27,7 +27,7 @@ yarn link webpack
yarn test
```
### To run only intergration tests use
### To run only integration tests use
```bash
yarn test:integration

View File

@ -1,6 +1,6 @@
# Info
This example illustrates webpack's algorthim for automatic deduplication using `optimization.splitChunks`.
This example illustrates webpack's algorithm for automatic deduplication using `optimization.splitChunks`.
This example application contains 7 pages, each of them importing 1-3 modules from the `node_modules` folder (vendor libs) and 0-3 modules from the `stuff` folder (application modules). In reallity an application is probably more complex, but the same mechanisms apply.
@ -41,7 +41,7 @@ module.exports = {
chunks: "all",
maxInitialRequests: 20, // for HTTP2
maxAsyncRequests: 20, // for HTTP2
minSize: 40 // for example only: choosen to match 2 modules
minSize: 40 // for example only: chosen to match 2 modules
// omit minSize in real use case to use the default of 30kb
}
}

View File

@ -1,6 +1,6 @@
# Info
This example illustrates webpack's algorthim for automatic deduplication using `optimization.splitChunks`.
This example illustrates webpack's algorithm for automatic deduplication using `optimization.splitChunks`.
This example application contains 7 pages, each of them importing 1-3 modules from the `node_modules` folder (vendor libs) and 0-3 modules from the `stuff` folder (application modules). In reallity an application is probably more complex, but the same mechanisms apply.

View File

@ -14,7 +14,7 @@ module.exports = {
chunks: "all",
maxInitialRequests: 20, // for HTTP2
maxAsyncRequests: 20, // for HTTP2
minSize: 40 // for example only: choosen to match 2 modules
minSize: 40 // for example only: chosen to match 2 modules
// omit minSize in real use case to use the default of 30kb
}
}

View File

@ -628,7 +628,7 @@ class Chunk {
list.sort((a, b) => {
const cmp = b.order - a.order;
if (cmp !== 0) return cmp;
// TOOD webpack 5 remove this check of compareTo
// TODO webpack 5 remove this check of compareTo
if (a.group.compareTo) {
return a.group.compareTo(b.group);
}

View File

@ -442,7 +442,7 @@ class ChunkGroup {
list.sort((a, b) => {
const cmp = b.order - a.order;
if (cmp !== 0) return cmp;
// TOOD webpack 5 remove this check of compareTo
// TODO webpack 5 remove this check of compareTo
if (a.group.compareTo) {
return a.group.compareTo(b.group);
}

View File

@ -1453,7 +1453,7 @@ class Compilation extends Tapable {
* @returns {DependencyReference} a reference for the dependency
*/
getDependencyReference(module, dependency) {
// TODO remove dep.getReference existance check in webpack 5
// TODO remove dep.getReference existence check in webpack 5
if (typeof dependency.getReference !== "function") return null;
const ref = dependency.getReference();
if (!ref) return null;
@ -2113,7 +2113,7 @@ class Compilation extends Tapable {
/**
* Used to sort errors and warnings in compilation. this.warnings, and
* this.errors contribute to the compilation hash and therefore shoudl be
* this.errors contribute to the compilation hash and therefore should be
* updated whenever other references (having a chunk id) are sorted. This preserves the hash
* integrity
*

View File

@ -25,7 +25,7 @@ class Generator {
* @returns {Source} generated code
*/
generate(module, dependencyTemplates, runtimeTemplate, type) {
throw new Error("Generator.generate: must be overriden");
throw new Error("Generator.generate: must be overridden");
}
}

View File

@ -645,7 +645,7 @@ module.exports = class SplitChunksPlugin {
isReused = true;
}
}
// Check if maxRequests condition can be fullfilled
// Check if maxRequests condition can be fulfilled
const usedChunks = Array.from(item.chunks).filter(chunk => {
// skip if we address ourself

View File

@ -7,7 +7,7 @@
const mergeCache = new WeakMap();
/**
* Merges two given objects and caches the result to avoid computation if same objects passed as arguements again.
* Merges two given objects and caches the result to avoid computation if same objects passed as arguments again.
* @example
* // performs Object.assign(first, second), stores the result in WeakMap and returns result
* cachedMerge({a: 1}, {a: 2})

View File

@ -186,7 +186,7 @@ module.exports = ({ maxSize, minSize, items, getSize, getKey }) => {
if (left <= right) {
// when there is a area between left and right
// we look for best split point
// we split at the minimum similiarity
// we split at the minimum similarity
// here key space is separated the most
let best = left - 1;
let bestSimilarity = group.similarities[best];