diff --git a/Sources/geometrize-cli/main.swift b/Sources/geometrize-cli/main.swift index a1ddd9c..e4660dd 100644 --- a/Sources/geometrize-cli/main.swift +++ b/Sources/geometrize-cli/main.swift @@ -7,7 +7,7 @@ import JPEG struct GeometrizeOptions: ParsableArguments { @Option(name: .shortAndLong, help: "Input file pathname.") var inputPath: String @Option(name: .shortAndLong, help: "Output file pathname.") var outputPath: String - @Option(name: [.customShort("t"), .long], help: "The types of shapes to generate.") var shapeTypes: String = "rectangle" + @Option(name: [.customShort("t"), .long], help: "White space separated list of shapes to use geometrizing image.") var shapeTypes: String = "rectangle" @Option(name: [.customShort("c"), .long], help: "The number of shapes to generate for the final output.") var shapeCount: UInt? @Flag(name: .shortAndLong, help: "Verbose output.") var verbose: Bool = false }