Skip to content

Commit 1d5006a

Browse files
Michael J Grubergitster
authored andcommitted
Make <identifier> lowercase as per CodingGuidelines
parse-options part Signed-off-by: Michael J Gruber <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b1afe49 commit 1d5006a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse-options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ struct option {
141141
{ OPTION_NUMBER, 0, NULL, (v), NULL, (h), \
142142
PARSE_OPT_NOARG | PARSE_OPT_NONEG, (f) }
143143
#define OPT_FILENAME(s, l, v, h) { OPTION_FILENAME, (s), (l), (v), \
144-
"FILE", (h) }
144+
"file", (h) }
145145
#define OPT_COLOR_FLAG(s, l, v, h) \
146146
{ OPTION_CALLBACK, (s), (l), (v), "when", (h), PARSE_OPT_OPTARG, \
147147
parse_opt_color_flag_cb, (intptr_t)"always" }

0 commit comments

Comments
 (0)