diff mbox series

name-rev: prefix annotate-stdin with '--' in message

Message ID 20220620164434.49618-1-ash@kambanaria.org (mailing list archive)
State Accepted
Commit 325240dfd76bc6a47e5a89beccf27b236b70e2ac
Headers show
Series name-rev: prefix annotate-stdin with '--' in message | expand

Commit Message

Alexander Shopov June 20, 2022, 4:44 p.m. UTC
This is an option rather than command.  Make the message convey this
similar to the other messages in the file.

Signed-off-by: Alexander Shopov <ash@kambanaria.org>
---

Add missing '--' prefix to option name in help message
Based on discussion: https://github.com/git-l10n/git-po/pull/637

 builtin/name-rev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.36.1
diff mbox series

Patch

diff --git a/builtin/name-rev.c b/builtin/name-rev.c
index 02ea9d1633..580b1eb170 100644
--- a/builtin/name-rev.c
+++ b/builtin/name-rev.c
@@ -577,7 +577,7 @@  int cmd_name_rev(int argc, const char **argv, const char *prefix)
 				   N_("ignore refs matching <pattern>")),
 		OPT_GROUP(""),
 		OPT_BOOL(0, "all", &all, N_("list all commits reachable from all refs")),
-		OPT_BOOL(0, "stdin", &transform_stdin, N_("deprecated: use annotate-stdin instead")),
+		OPT_BOOL(0, "stdin", &transform_stdin, N_("deprecated: use --annotate-stdin instead")),
 		OPT_BOOL(0, "annotate-stdin", &annotate_stdin, N_("annotate text from stdin")),
 		OPT_BOOL(0, "undefined", &allow_undefined, N_("allow to print `undefined` names (default)")),
 		OPT_BOOL(0, "always",     &always,