Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli: avoid the word "generate" in uuid help text #508

Merged
merged 1 commit into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Options for sync:
Allowed values: c[hoose], i[nclude], e[xclude] (default: choose)

Options for uuid:
-n, --num <int> Number of UUIDs to generate
-n, --num <int> Number of UUIDs to output

Global options:
-h, --help Show this help message and exit
Expand Down
2 changes: 1 addition & 1 deletion src/cli.nim
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func genHelpText: string =
optSyncTests: &"Sync Practice Exercise '.meta/tests.toml' files.\n" &
&"{paddingOpt}The mode value specifies how missing tests are handled when using --{$optFmtSyncUpdate}.\n" &
&"{paddingOpt}{allowedValues(TestsMode)} (default: choose)",
optUuidNum: "Number of UUIDs to generate",
optUuidNum: "Number of UUIDs to output",
]

result = "Commands:\n"
Expand Down