]> git.ipfire.org Git - thirdparty/git.git/commitdiff
for-each-ref: correct spelling of Tcl in option description
authorRalf Thielow <ralf.thielow@gmail.com>
Fri, 28 Nov 2014 18:00:11 +0000 (19:00 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 1 Dec 2014 02:50:35 +0000 (18:50 -0800)
Tcl is conventionally spelled "Tcl". The description of
option "--tcl", however, spells it "tcl". Let's follow
the convention.

Reported-by: Hartmut Henkel <hartmut_henkel@gmx.de>
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/for-each-ref.c

index 47bd624696d5e94295dda8846f00dcbb80a6ca5a..f8cddcec8e359e1eeb836da2fcf154c0b4935775 100644 (file)
@@ -1069,7 +1069,7 @@ int cmd_for_each_ref(int argc, const char **argv, const char *prefix)
                OPT_BIT(0 , "python", &quote_style,
                        N_("quote placeholders suitably for python"), QUOTE_PYTHON),
                OPT_BIT(0 , "tcl",  &quote_style,
-                       N_("quote placeholders suitably for tcl"), QUOTE_TCL),
+                       N_("quote placeholders suitably for Tcl"), QUOTE_TCL),
 
                OPT_GROUP(""),
                OPT_INTEGER( 0 , "count", &maxcount, N_("show only <n> matched refs")),