Skip to content

Commit 70d5210

Browse files
committed
Fix some typos and adjust some wording.
1 parent 70312e8 commit 70d5210

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/configuration/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var path = require('path');
3636
// and webpack starts bundling
3737
3838
[output](/configuration/output): {
39-
// options related how webpack emits results
39+
// options related to how webpack emits results
4040
4141
[path](/configuration/output#output-path): path.resolve(__dirname, "dist"), // string
4242
// the target directory for all output files
@@ -131,8 +131,8 @@ var path = require('path');
131131
[exclude](/configuration/module#rule-exclude): [
132132
path.resolve(__dirname, "app/demo-files")
133133
]
134-
// matching conditions, each accepting regular expression or string
135-
// test and include behave equal, both must be matched
134+
// these are matching conditions, each accepting a regular expression or string
135+
// test and include have the same behavior, both must be matched
136136
// exclude must not be matched (takes preferrence over test and include)
137137
// Best practices:
138138
// - Use RegExp only in test and for filename matching
@@ -144,10 +144,10 @@ var path = require('path');
144144
145145
[enforce](/configuration/module#rule-enforce): "pre",
146146
[enforce](/configuration/module#rule-enforce): "post",
147-
// apply these rule even if rules are overridden (advanced option)
147+
// flags to apply these rules, even if they are overridden (advanced option)
148148
149149
[loader](/configuration/module#rule-loader): "babel-loader",
150-
// the loader which should be applied, it'll be resolve relative to the context
150+
// the loader which should be applied, it'll be resolved relative to the context
151151
// -loader suffix is no longer optional in Webpack 2 for clarity reasons
152152
// see [webpack 1 upgrade guide](/guides/migrating)
153153

0 commit comments

Comments
 (0)