Skip to content

Commit 043ffdd

Browse files
authored
docs: fix typos in content/ (#5320)
1 parent 507fee7 commit 043ffdd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/content/api/hot-module-replacement.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The `errorHandler` is fired when the evaluation of this module (or dependencies)
9696
- `moduleId`: the current module id.
9797
- `module`: the current module instance.
9898
- `module.hot`: allow to use the HMR API of the errored module instance. A common scenario is to self accept it again. It also makes sense to add a dispose handler to pass data along. Note that the errored module might be already partially executed, so make sure to not get into a inconsistent state. You can use `module.hot.data` to store partial state.
99-
- `module.exports`: can be overriden, but be careful since property names might be mangled in production mode.
99+
- `module.exports`: can be overridden, but be careful since property names might be mangled in production mode.
100100

101101
### `decline`
102102

src/content/awesome-webpack.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ _People passionate about Webpack (In no particular order)_
117117
- [SystemJS Webpack](https://github.com/guybedford/systemjs-webpack-plugin) - Webpack bundling for SystemJS. -- _Maintainer_: `Guy Bedford` [![Github][githubicon]](https://github.com/guybedford) [![Twitter][twittericon]](https://twitter.com/guybedford)
118118
- [Gulp Webpack Stream](https://github.com/shama/webpack-stream) - Run webpack through a stream interface. -- _Maintainer_: `Kyle Robinson Young` [![Github][githubicon]](https://github.com/shama) [![Twitter][twittericon]](https://twitter.com/shamakry)
119119
- [Webpack Blocks](https://github.com/andywer/webpack-blocks) - Configure webpack using functional feature blocks. -- _Maintainer_: `Andy Wermke` [![Github][githubicon]](https://github.com/andywer) [![Twitter][twittericon]](https://twitter.com/andywritescode)
120-
- [Webpacker](https://github.com/rails/webpacker) - Offical webpack gem for integration into ruby on rails projects. -- _Maintainer_: `Rails` [![Github][githubicon]](https://github.com/rails)
120+
- [Webpacker](https://github.com/rails/webpacker) - Official webpack gem for integration into ruby on rails projects. -- _Maintainer_: `Rails` [![Github][githubicon]](https://github.com/rails)
121121
- [WebpackAspnetMiddleware](https://github.com/frankwallis/WebpackAspnetMiddleware) - Development middleware for ASP.NET 5. -- _Maintainer_: `Frank Wallis` [![Github][githubicon]](https://github.com/frankwallis)
122122
- [Consul Key/Value Webpack](https://github.com/marlonmleite/consul-env-webpack-plugin): Compiles environment variables into your bundle via [Consul KV-store](https://www.consul.io/api/kv.html). -- _Maintainer_: `Marlon Maxwel` [![Github][githubicon]](https://github.com/marlonmleite)
123123

src/content/configuration/experiments.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ Compile entrypoints and dynamic `import`s only when they are in use. It can be u
209209

210210
`boolean`
211211

212-
Once enabled, webpack will ouput ECMAScript module syntax whenever possible. For instance, `import()` to load chunks, ESM exports to expose chunk data, among others.
212+
Once enabled, webpack will output ECMAScript module syntax whenever possible. For instance, `import()` to load chunks, ESM exports to expose chunk data, among others.
213213

214214
```js
215215
module.exports = {

src/content/configuration/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ module.exports = {
10071007
minChunks: 1,
10081008
// minimum number of chunks a module must be in
10091009
enforceSizeThreshold: 100000,
1010-
// ignore when following criterias when size of modules
1010+
// ignore when following criteria when size of modules
10111011
// is above this threshold
10121012
minSize: 20000,
10131013
// size of modules must be above this threshold

0 commit comments

Comments
 (0)