Skip to content

Commit

Permalink
fix: fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgmcd authored Jun 25, 2016
1 parent 1cd6c4e commit 7a4dc0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function webpack(options, callback) {
}));
} else if(typeof options === "object") {
if(!options.entry && !options.plugins) {
throw new Error("Passed 'options' object don't look like a valid webpack configuration");
throw new Error("Passed 'options' object does not look like a valid webpack configuration");
}
new WebpackOptionsDefaulter().process(options);

Expand Down

0 comments on commit 7a4dc0b

Please sign in to comment.