From 7dd020f88352c03997f8f19028041537e49352dc Mon Sep 17 00:00:00 2001 From: Kristoffer Haugsbakk Date: Tue, 18 Aug 2026 11:57:30 +0200 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- builtin/name-rev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/name-rev.c b/builtin/name-rev.c index 60cbbfb4b7..254c88199f 100644 --- a/builtin/name-rev.c +++ b/builtin/name-rev.c @@ -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(), };