Fix typo. Intervall -> Interval (#3664)

This commit is contained in:
Justin Coyne 2017-01-01 11:21:46 -06:00 committed by Sean Larkin
parent fa321dac61
commit 9734d00d8b
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ module.exports = function(optimist) {
.boolean("watch").alias("watch", "w").describe("watch", "Watch the filesystem for changes") .boolean("watch").alias("watch", "w").describe("watch", "Watch the filesystem for changes")
.boolean("watch-stdin").alias("watch-stdin", "stdin").describe("Exit the process when stdin is closed") .boolean("watch-stdin").alias("watch-stdin", "stdin").describe("Exit the process when stdin is closed")
.describe("watch-aggregate-timeout", "Timeout for gathering changes while watching") .describe("watch-aggregate-timeout", "Timeout for gathering changes while watching")
.describe("watch-poll", "The polling intervall for watching (also enable polling)") .describe("watch-poll", "The polling interval for watching (also enable polling)")
.boolean("hot").describe("hot", "Enables Hot Module Replacement") .boolean("hot").describe("hot", "Enables Hot Module Replacement")
.boolean("debug").describe("debug", "Switch loaders to debug mode") .boolean("debug").describe("debug", "Switch loaders to debug mode")
.string("devtool").describe("devtool", "Enable devtool for better debugging experience") .string("devtool").describe("devtool", "Enable devtool for better debugging experience")

View File

@ -167,7 +167,7 @@ module.exports = function(yargs) {
}, },
"watch-poll": { "watch-poll": {
type: "boolean", type: "boolean",
describe: "The polling intervall for watching (also enable polling)", describe: "The polling interval for watching (also enable polling)",
group: ADVANCED_GROUP group: ADVANCED_GROUP
}, },
"hot": { "hot": {