Merge pull request #3095 from quickfur/getopt_docs

[Trivial] Add missing comma in std.getopt code example.
This commit is contained in:
Robert Schadek 2015-03-23 20:33:37 +01:00
commit 26d8a7154e

View file

@ -445,7 +445,7 @@ unittest
bool foo;
bool bar;
auto rslt = getopt(args, "foo|f" "Some information about foo.", &foo, "bar|b",
auto rslt = getopt(args, "foo|f", "Some information about foo.", &foo, "bar|b",
"Some help message about bar.", &bar);
if (rslt.helpWanted)