Skip to content

Commit 5a9b772

Browse files
committed
Fixed typos
1 parent ba2a629 commit 5a9b772

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ There are two types of branches:
3838

3939
### Features
4040

41-
If your contribution is something new, like a new section or page or a new chunk to an existing page, you can create a branch with the following naming convetion:
41+
If your contribution is something new, like a new section or page or a new chunk to an existing page, you can create a branch with the following naming convention:
4242

4343
`feature/<the-new-feature>`
4444

content/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ These options allow webpack to display various stats and style them differently
226226
| --records-input-path | Path to the records file (reading) | |
227227
| --records-output-path | Path to the records file (writing) | |
228228
| --records-path | Path to the records file | |
229-
| --target | The targeted execution enviroment | --target='node' |
229+
| --target | The targeted execution environment | --target='node' |
230230

231231
### Shortcuts
232232

content/concepts/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ let targets = ['web', 'webworker', 'node', 'async-node', 'node-webkit', 'electro
8484
module.exports = targets;
8585
```
8686

87-
T> The most important part to take away from this document is that there are many different ways to format and style your webpack configuation. The key is to stick with something consistent that you and your team can understand and maintain.
87+
T> The most important part to take away from this document is that there are many different ways to format and style your webpack configuration. The key is to stick with something consistent that you and your team can understand and maintain.
8888

8989
## Using TypeScript
9090

content/configuration/output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ library: "MyLibrary"
209209

210210
The name is used depending on the value of the [`output.libraryTarget`](#output-librarytarget) options.
211211

212-
Note that `output.libraryTarget` defaults to `var`. This means if only `output.library` is used it is exported as variable declaration (when used as script tag it's avaiable in the global scope after execution).
212+
Note that `output.libraryTarget` defaults to `var`. This means if only `output.library` is used it is exported as variable declaration (when used as script tag it's available in the global scope after execution).
213213

214214

215215
## `output.libraryTarget`
@@ -220,7 +220,7 @@ Read the [library guide](/guides/author-libraries) for details.
220220

221221
Configure how the library will be exposed. Any one of the following options can be used: (the examples assume `library: "MyLibrary"`)
222222

223-
`libraryTarget: "amd"` - Expose it using [Asynchronous Module Defintion](http://davidbcalhoun.com/2014/what-is-amd-commonjs-and-umd/) (AMD)
223+
`libraryTarget: "amd"` - Expose it using [Asynchronous Module Definition](http://davidbcalhoun.com/2014/what-is-amd-commonjs-and-umd/) (AMD)
224224

225225
`libraryTarget: "commonjs"` - Expose it using the `exports` object (i.e. `exports["MyLibrary"] = ...`)
226226

content/guides/hmr-react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ We can use the following package.json entry:
241241
```
242242

243243
Run `npm start`, open up your browser to `localhost:8080`,
244-
and you should see the folling entries printed in your console.log:
244+
and you should see the following entries printed in your console.log:
245245

246246
```bash
247247
dev-server.js:49[HMR] Waiting for update signal from WDS…

content/guides/hmr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ We can use the following package.json entry:
246246
```
247247

248248
Run `npm start`, open up your browser to `localhost:8080`,
249-
and you should see the folling entries printed in your console.log:
249+
and you should see the following entries printed in your console.log:
250250

251251
```bash
252252
dev-server.js:49[HMR] Waiting for update signal from WDS…

content/guides/migrating.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ To keep compatibility with old loaders, loaders can be switched to minimize mode
122122

123123
## `OccurrenceOrderPlugin` is now on by default
124124

125-
It's no longer neccessary to specify it in configuration.
125+
It's no longer necessary to specify it in configuration.
126126

127127
``` diff
128128
plugins: [

0 commit comments

Comments
 (0)