From 5da9560ebc8a089807920a7548141e4e5b60a4dc Mon Sep 17 00:00:00 2001 From: Fangyi Zhou Date: Wed, 6 Apr 2022 21:32:57 +0100 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- builtin/submodule--helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=] [--quiet] " "[--reference ] [--name ] [--depth ] " - "[--single-branch] [--filter ]" + "[--single-branch] [--filter ] " "--url --path "), NULL };