mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 21:51:40 +03:00
Merge pull request #3095 from quickfur/getopt_docs
[Trivial] Add missing comma in std.getopt code example.
This commit is contained in:
commit
26d8a7154e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue