summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorLibravatar Fangyi Zhou <me@fangyi.io>2022-04-06 21:32:57 +0100
committerLibravatar Junio C Hamano <gitster@pobox.com>2022-04-07 07:46:23 -0700
commit5da9560ebc8a089807920a7548141e4e5b60a4dc (patch)
treee6867ff99045603b1ea1d1edbd5cb7e4c7937924 /builtin
parentclone, submodule: pass partial clone filters to submodules (diff)
downloadtgif-5da9560ebc8a089807920a7548141e4e5b60a4dc.tar.xz
submodule-helper: fix usage string
The missing space at the end of the line makes the closing square bracket sticking to the dash in the next line Found during localisation v2.36.0 round 1 Signed-off-by: Fangyi Zhou <me@fangyi.io> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/submodule--helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
index 11552970f2..447c5cfe84 100644
--- a/builtin/submodule--helper.c
+++ b/builtin/submodule--helper.c
@@ -1895,7 +1895,7 @@ static int module_clone(int argc, const char **argv, const char *prefix)
const char *const git_submodule_helper_usage[] = {
N_("git submodule--helper clone [--prefix=<path>] [--quiet] "
"[--reference <repository>] [--name <name>] [--depth <depth>] "
- "[--single-branch] [--filter <filter-spec>]"
+ "[--single-branch] [--filter <filter-spec>] "
"--url <url> --path <path>"),
NULL
};