diff options
author | Abhradeep Chakraborty <chakrabortyabhradeep79@gmail.com> | 2022-02-23 15:27:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-02-23 23:43:10 +0100 |
commit | 9e1f22c8ad1dc51d510af68278776beb00378c07 (patch) | |
tree | 7af8fd9e2e3cd26deed3cbd21ea60e6e3efce795 /diff.c | |
parent | The sixth batch (diff) | |
download | git-9e1f22c8ad1dc51d510af68278776beb00378c07.tar.xz git-9e1f22c8ad1dc51d510af68278776beb00378c07.zip |
amend remaining usage strings according to style guide
Usage strings for git (sub)command flags has a style guide that
suggests - first letter should not capitalized (unless required)
and it should skip full-stop at the end of line. But there are
some files where usage-strings do not follow the above mentioned
guide.
Amend the usage strings that don't follow the style convention/guide.
Signed-off-by: Abhradeep Chakraborty <chakrabortyabhradeep79@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5630,7 +5630,7 @@ static void prep_parse_options(struct diff_options *options) N_("select files by diff type"), PARSE_OPT_NONEG, diff_opt_diff_filter), { OPTION_CALLBACK, 0, "output", options, N_("<file>"), - N_("Output to a specific file"), + N_("output to a specific file"), PARSE_OPT_NONEG, NULL, 0, diff_opt_output }, OPT_END() |