format-rev: use lower case for opts description
The option descriptions use a mix of initial capital and lower case letters. Lower case is the correct style. Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name> Signed-off-by: Junio C Hamano <gitster@pobox.com>seen
parent
745601a9a9
commit
7dd020f883
|
|
@ -833,12 +833,12 @@ int cmd_format_rev(int argc,
|
|||
OPT_STRING_LIST(0, "notes", ¬es, N_("notes"),
|
||||
N_("display notes for pretty format")),
|
||||
OPT_CALLBACK_F('z', "null", &nul_data, N_("z"),
|
||||
N_("Use NUL for input and output termination"),
|
||||
N_("use NUL for input and output termination"),
|
||||
PARSE_OPT_NOARG | PARSE_OPT_NONEG, format_nul_cb),
|
||||
OPT_BOOL(0, "null-input", &nul_data.nul_input,
|
||||
N_("Use NUL for input termination")),
|
||||
N_("use NUL for input termination")),
|
||||
OPT_BOOL(0, "null-output", &nul_data.nul_output,
|
||||
N_("Use NUL for output termination")),
|
||||
N_("use NUL for output termination")),
|
||||
OPT_END(),
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue