Skip to content

Commit

Permalink
docs: fix typo (#4022)
Browse files Browse the repository at this point in the history
  • Loading branch information
harish-sethuraman committed Nov 13, 2021
1 parent d198e4e commit d576068
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/client/reconnect/false/README.md
Expand Up @@ -11,7 +11,7 @@ module.exports = {
// ...
devServer: {
client: {
reconect: false,
reconnect: false,
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion examples/client/reconnect/number/README.md
Expand Up @@ -11,7 +11,7 @@ module.exports = {
// ...
devServer: {
client: {
reconect: 2,
reconnect: 2,
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion examples/client/reconnect/true/README.md
Expand Up @@ -11,7 +11,7 @@ module.exports = {
// ...
devServer: {
client: {
reconect: true,
reconnect: true,
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion examples/compression/false/README.md
Expand Up @@ -3,7 +3,7 @@
Website gzip compression makes it possible to reduce the file size of a file
to roughly 30% of its original size before the files are sent to the browser.

It is enabled by default. To disable it set `compresss` option to `false`.
It is enabled by default. To disable it set `compress` option to `false`.

## false

Expand Down

0 comments on commit d576068

Please sign in to comment.