diff options
author | Teng Long <dyroneteng@gmail.com> | 2023-01-12 10:11:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-01-14 00:09:23 +0100 |
commit | 925a7c6b6b00154be667af7a67e886cfb8d812db (patch) | |
tree | 18a5f05331f5158a6fec76a2f8c61d3d083d3594 | |
parent | ls-tree: make "line_termination" less generic (diff) | |
download | git-925a7c6b6b00154be667af7a67e886cfb8d812db.tar.xz git-925a7c6b6b00154be667af7a67e886cfb8d812db.zip |
ls-tree: cleanup the redundant SPACE
An redundant space was found in ls-tree.c, which is no doubt
a small change, but it might be OK to make a commit on its own.
Signed-off-by: Teng Long <dyroneteng@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/ls-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/ls-tree.c b/builtin/ls-tree.c index a743959f2b..72eb70823d 100644 --- a/builtin/ls-tree.c +++ b/builtin/ls-tree.c @@ -14,7 +14,7 @@ #include "parse-options.h" #include "pathspec.h" -static const char * const ls_tree_usage[] = { +static const char * const ls_tree_usage[] = { N_("git ls-tree [<options>] <tree-ish> [<path>...]"), NULL }; |