Showing with 3 additions and 2 deletions.
  1. +3 −2 std/getopt.d
5 changes: 3 additions & 2 deletions std/getopt.d
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,9 @@ getopt(args,
"bar", &bar);
---------
In the example above, "--foo", "--bar", "--FOo", "--bAr" etc. are recognized.
The directive is active til the end of $(D getopt), or until the
In the example above, "--foo" and "--bar" are recognized, but "--Foo", "--Bar",
"--FOo", "--bAr", etc. are rejected.
The directive is active until the end of $(D getopt), or until the
converse directive $(D caseInsensitive) is encountered:
---------
Expand Down