Skip to content

Commit

Permalink
Merge pull request #65 from valeriyvan/fix/cli-parameter
Browse files Browse the repository at this point in the history
Refine parameter description
  • Loading branch information
valeriyvan authored Oct 10, 2023
2 parents 79d947e + a03dcdc commit 39f09e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/geometrize-cli/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 39f09e9

Please sign in to comment.