diff --git a/Examples/repeat/Repeat.swift b/Examples/repeat/Repeat.swift index ac34dd36..c99cd110 100644 --- a/Examples/repeat/Repeat.swift +++ b/Examples/repeat/Repeat.swift @@ -13,7 +13,7 @@ import ArgumentParser @main struct Repeat: ParsableCommand { - @Option(help: "The number of times to repeat 'phrase'.") + @Option(help: "How many times to repeat 'phrase'.") var count: Int? = nil @Flag(help: "Include a counter with each repetition.") diff --git a/README.md b/README.md index 8765f2d8..b3ead232 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ struct Repeat: ParsableCommand { @Flag(help: "Include a counter with each repetition.") var includeCounter = false - @Option(name: .shortAndLong, help: "The number of times to repeat 'phrase'.") + @Option(name: .shortAndLong, help: "How many times to repeat 'phrase'.") var count: Int? = nil @Argument(help: "The phrase to repeat.")