diff options
author | Elijah Newren <newren@gmail.com> | 2021-12-23 18:07:03 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-12-23 20:55:54 +0100 |
commit | dfac9b609f86cd4f6ce896df9e1172d2a02cde48 (patch) | |
tree | a19d64bbf5dc28d83178c64fa0aea1d886b2ecf2 /builtin/sparse-checkout.c | |
parent | clone: avoid using deprecated `sparse-checkout init` (diff) | |
download | git-dfac9b609f86cd4f6ce896df9e1172d2a02cde48.tar.xz git-dfac9b609f86cd4f6ce896df9e1172d2a02cde48.zip |
sparse-checkout: remove stray trailing space
Reported-by: Jiang Xin <worldhello.net@gmail.com>
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/sparse-checkout.c')
-rw-r--r-- | builtin/sparse-checkout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/sparse-checkout.c b/builtin/sparse-checkout.c index 0dae44c575..45e838d8f8 100644 --- a/builtin/sparse-checkout.c +++ b/builtin/sparse-checkout.c @@ -759,7 +759,7 @@ static int sparse_checkout_set(int argc, const char **argv, const char *prefix) } static char const * const builtin_sparse_checkout_reapply_usage[] = { - N_("git sparse-checkout reapply [--[no-]cone] [--[no-]sparse-index] "), + N_("git sparse-checkout reapply [--[no-]cone] [--[no-]sparse-index]"), NULL }; |