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
Kristoffer Haugsbakk 2026-08-18 11:57:30 +02:00 committed by Junio C Hamano
parent 745601a9a9
commit 7dd020f883
1 changed files with 3 additions and 3 deletions

View File

@ -833,12 +833,12 @@ int cmd_format_rev(int argc,
OPT_STRING_LIST(0, "notes", &notes, 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(),
};