diff options
author | ZheNing Hu <adlternative@gmail.com> | 2021-01-06 14:44:03 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-01-06 15:10:49 -0800 |
commit | e73fe3dd028ad830bb44b3ad7de15901834e557f (patch) | |
tree | afe98646dbb1a7d517259b073f14da5b69c5b629 /builtin/shortlog.c | |
parent | parse-options: format argh like error messages (diff) | |
download | tgif-e73fe3dd028ad830bb44b3ad7de15901834e557f.tar.xz |
builtin/*: update usage format
According to the guidelines in parse-options.h,
we should not end in a full stop or start with
a capital letter. Fix old error and usage
messages to match this expectation.
Signed-off-by: ZheNing Hu <adlternative@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/shortlog.c')
-rw-r--r-- | builtin/shortlog.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/builtin/shortlog.c b/builtin/shortlog.c index c52e4ccd19..1c0b3a9b05 100644 --- a/builtin/shortlog.c +++ b/builtin/shortlog.c @@ -360,19 +360,19 @@ int cmd_shortlog(int argc, const char **argv, const char *prefix) const struct option options[] = { OPT_BIT('c', "committer", &log.groups, - N_("Group by committer rather than author"), + N_("group by committer rather than author"), SHORTLOG_GROUP_COMMITTER), OPT_BOOL('n', "numbered", &log.sort_by_number, N_("sort output according to the number of commits per author")), OPT_BOOL('s', "summary", &log.summary, - N_("Suppress commit descriptions, only provides commit count")), + N_("suppress commit descriptions, only provides commit count")), OPT_BOOL('e', "email", &log.email, - N_("Show the email address of each author")), + N_("show the email address of each author")), OPT_CALLBACK_F('w', NULL, &log, N_("<w>[,<i1>[,<i2>]]"), - N_("Linewrap output"), PARSE_OPT_OPTARG, + N_("linewrap output"), PARSE_OPT_OPTARG, &parse_wrap_args), OPT_CALLBACK(0, "group", &log, N_("field"), - N_("Group by field"), parse_group_option), + N_("group by field"), parse_group_option), OPT_END(), }; |