summaryrefslogtreecommitdiff
path: root/builtin/commit.c
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-10-13 17:39:21 +0200
committerJunio C Hamano <gitster@pobox.com>2022-10-13 09:32:57 -0700
commit463ea0cfae02b5c74d636d1f62de9c2ba0d03d2d (patch)
treec89c6ddf5b15169617a61e00628b2c8adfb74a40 /builtin/commit.c
parentdf8738116f7a00f74c8ac75d10ced87164287819 (diff)
downloadgit-463ea0cfae02b5c74d636d1f62de9c2ba0d03d2d.tar.gz
doc txt & -h consistency: use "[<label>...]" for "zero or more"
Correct uses of "<label>..." where we really meant to say "[<label>...]", i.e. the command in question taken an optional set of "<label>". As the CodingGuidelines notes "[o]ptional parts [should be] enclosed in square brackets". Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r--builtin/commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index fcf9c85947..21ad4ccbf8 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -45,7 +45,7 @@ static const char * const builtin_commit_usage[] = {
};
static const char * const builtin_status_usage[] = {
- N_("git status [<options>] [--] <pathspec>..."),
+ N_("git status [<options>] [--] [<pathspec>...]"),
NULL
};