From b3debea8588c9cba98451b5a3ad0f9f839b305a5 Mon Sep 17 00:00:00 2001 From: ee7 <45465154+ee7@users.noreply.github.com> Date: Wed, 26 Jan 2022 15:29:01 +0100 Subject: [PATCH] cli: avoid the word "generate" in uuid help text This removes potential for confusion with `configlet generate`. --- README.md | 2 +- src/cli.nim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ab4047a..3e39a333 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Options for sync: Allowed values: c[hoose], i[nclude], e[xclude] (default: choose) Options for uuid: - -n, --num Number of UUIDs to generate + -n, --num Number of UUIDs to output Global options: -h, --help Show this help message and exit diff --git a/src/cli.nim b/src/cli.nim index 815120e4..d1a9e36f 100644 --- a/src/cli.nim +++ b/src/cli.nim @@ -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"