summaryrefslogtreecommitdiff
path: root/builtin/column.c
diff options
context:
space:
mode:
authorChinmoy Chakraborty <chinmoy12c@gmail.com>2021-03-29 14:46:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-03-29 21:06:08 (GMT)
commit5ee90326dceb23744a86ad10a60ccda9a2dc3f30 (patch)
tree2fd3b2f4a3d4d0205722c1a69f103ac4f9501d88 /builtin/column.c
parent48bf2fa8bad054d66bd79c6ba903c89c704201f7 (diff)
downloadgit-5ee90326dceb23744a86ad10a60ccda9a2dc3f30.zip
git-5ee90326dceb23744a86ad10a60ccda9a2dc3f30.tar.gz
git-5ee90326dceb23744a86ad10a60ccda9a2dc3f30.tar.bz2
column, range-diff: downcase option description
It is customary not to begin the help text for each option given to the parse-options API with a capital letter. Various (sub)commands' option arrays don't follow the guideline provided by the parse_options Documentation regarding the descriptions. Downcase the first word of some option descriptions for "column" and "range-diff". Signed-off-by: Chinmoy Chakraborty <chinmoy12c@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/column.c')
-rw-r--r--builtin/column.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/builtin/column.c b/builtin/column.c
index e815e14..40d4b3b 100644
--- a/builtin/column.c
+++ b/builtin/column.c
@@ -27,10 +27,10 @@ int cmd_column(int argc, const char **argv, const char *prefix)
OPT_STRING(0, "command", &real_command, N_("name"), N_("lookup config vars")),
OPT_COLUMN(0, "mode", &colopts, N_("layout to use")),
OPT_INTEGER(0, "raw-mode", &colopts, N_("layout to use")),
- OPT_INTEGER(0, "width", &copts.width, N_("Maximum width")),
- OPT_STRING(0, "indent", &copts.indent, N_("string"), N_("Padding space on left border")),
- OPT_INTEGER(0, "nl", &copts.nl, N_("Padding space on right border")),
- OPT_INTEGER(0, "padding", &copts.padding, N_("Padding space between columns")),
+ OPT_INTEGER(0, "width", &copts.width, N_("maximum width")),
+ OPT_STRING(0, "indent", &copts.indent, N_("string"), N_("padding space on left border")),
+ OPT_INTEGER(0, "nl", &copts.nl, N_("padding space on right border")),
+ OPT_INTEGER(0, "padding", &copts.padding, N_("padding space between columns")),
OPT_END()
};