diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2011-02-15 14:09:13 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-15 11:53:11 -0800 |
commit | 41dbcd45409b2986c011e67dd9e2b4d3072fc88d (patch) | |
tree | f2398fca4295e83092d8db6de37b07fc65d27a13 /test-parse-options.c | |
parent | 23c6a803d3e6523ec20154e30ae8a51d2ff998ca (diff) | |
download | git-41dbcd45409b2986c011e67dd9e2b4d3072fc88d.tar.gz |
Make <identifier> lowercase as per CodingGuidelines
*.c part for matches with '<[A-Z]+>' (and affected test).
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-parse-options.c')
-rw-r--r-- | test-parse-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-parse-options.c b/test-parse-options.c index 0828592162..4e3710b9a8 100644 --- a/test-parse-options.c +++ b/test-parse-options.c @@ -46,7 +46,7 @@ int main(int argc, const char **argv) OPT_DATE('t', NULL, ×tamp, "get timestamp of <time>"), OPT_CALLBACK('L', "length", &integer, "str", "get length of <str>", length_callback), - OPT_FILENAME('F', "file", &file, "set file to <FILE>"), + OPT_FILENAME('F', "file", &file, "set file to <file>"), OPT_GROUP("String options"), OPT_STRING('s', "string", &string, "string", "get a string"), OPT_STRING(0, "string2", &string, "str", "get another string"), |