summaryrefslogtreecommitdiff
path: root/test-parse-options.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-03-16 23:47:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-03-16 23:47:25 (GMT)
commit7633a5ab9a33f90fc0fb912d7403f6c21c5435c1 (patch)
treeb6c3394b841cee89fb3febfe21953da0ae398ae9 /test-parse-options.c
parentbd2700dbdf6551c646bc4d68b6230b63ca6eaea3 (diff)
parent3b0d24053b50d8da76de28ea5f0d3947fa3d2194 (diff)
downloadgit-7633a5ab9a33f90fc0fb912d7403f6c21c5435c1.zip
git-7633a5ab9a33f90fc0fb912d7403f6c21c5435c1.tar.gz
git-7633a5ab9a33f90fc0fb912d7403f6c21c5435c1.tar.bz2
Merge branch 'mg/placeholders-are-lowercase' into maint
* mg/placeholders-are-lowercase: Make <identifier> lowercase in Documentation Make <identifier> lowercase as per CodingGuidelines Make <identifier> lowercase as per CodingGuidelines Make <identifier> lowercase as per CodingGuidelines CodingGuidelines: downcase placeholders in usage messages
Diffstat (limited to 'test-parse-options.c')
-rw-r--r--test-parse-options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-parse-options.c b/test-parse-options.c
index 0828592..4e3710b 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, &timestamp, "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"),