From: Ralf Thielow Date: Fri, 28 Nov 2014 18:00:11 +0000 (+0100) Subject: for-each-ref: correct spelling of Tcl in option description X-Git-Tag: v2.3.0-rc0~63^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b799a696b221ff72d25cc06ac9fd7535ff08fc88;p=git for-each-ref: correct spelling of Tcl in option description Tcl is conventionally spelled "Tcl". The description of option "--tcl", however, spells it "tcl". Let's follow the convention. Reported-by: Hartmut Henkel Signed-off-by: Ralf Thielow Signed-off-by: Junio C Hamano --- diff --git a/builtin/for-each-ref.c b/builtin/for-each-ref.c index 47bd624696..f8cddcec8e 100644 --- a/builtin/for-each-ref.c +++ b/builtin/for-each-ref.c @@ -1069,7 +1069,7 @@ int cmd_for_each_ref(int argc, const char **argv, const char *prefix) OPT_BIT(0 , "python", "e_style, N_("quote placeholders suitably for python"), QUOTE_PYTHON), OPT_BIT(0 , "tcl", "e_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 matched refs")),