Skip to content

Commit c11caf8

Browse files
committed
Merge pull request webpack#1102 from kennyt/typo-fix
Fix typos in convert-argv.js and CONTRIBUTING.md
2 parents 69df24c + 8fe3d40 commit c11caf8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ that include your webpack.config.js and relevant files are more likely to receiv
99

1010
**If you have discovered a bug or have a feature suggestion, feel free to create an issue on Github.**
1111

12-
If you have created your own loader/plugin please incude it on the relevant
12+
If you have created your own loader/plugin please include it on the relevant
1313
documentation pages:
1414

1515
[List of loaders](http://webpack.github.io/docs/list-of-loaders.html)

bin/convert-argv.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = function(optimist, argv, convertOptions) {
5757
}
5858

5959
if(typeof options !== "object" || options === null) {
60-
console.log("Config did not export a object.");
60+
console.log("Config did not export an object.");
6161
process.exit(-1);
6262
}
6363

@@ -77,7 +77,7 @@ module.exports = function(optimist, argv, convertOptions) {
7777
if(argv["watch"]) {
7878
// TODO remove this in next major version
7979
if(options.watch && typeof options.watch === "object") {
80-
console.warn("options.watch is deprecated: use options.watchOptions instead");
80+
console.warn("options.watch is deprecated: Use 'options.watchOptions' instead");
8181
options.watchOptions = options.watch;
8282
}
8383
// TODO remove this in next major version

0 commit comments

Comments
 (0)