diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2022-10-13 17:39:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-10-13 18:32:57 +0200 |
commit | 463ea0cfae02b5c74d636d1f62de9c2ba0d03d2d (patch) | |
tree | c89c6ddf5b15169617a61e00628b2c8adfb74a40 /Documentation/git-clean.txt | |
parent | doc txt & -h consistency: make "annotate" consistent (diff) | |
download | git-463ea0cfae02b5c74d636d1f62de9c2ba0d03d2d.tar.xz git-463ea0cfae02b5c74d636d1f62de9c2ba0d03d2d.zip |
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 'Documentation/git-clean.txt')
-rw-r--r-- | Documentation/git-clean.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-clean.txt b/Documentation/git-clean.txt index d5587cdd84..2000b4d75c 100644 --- a/Documentation/git-clean.txt +++ b/Documentation/git-clean.txt @@ -8,7 +8,7 @@ git-clean - Remove untracked files from the working tree SYNOPSIS -------- [verse] -'git clean' [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <pathspec>... +'git clean' [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] [<pathspec>...] DESCRIPTION ----------- |