Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add indication that an option takes a value to the help message
The help message didn't specify that an option took a value. Here's before and after for the option specification in t/11-usage.t Usage: 11-usage.t [-rv] [long options] [arguments] --bare --define (default: arch=i386, isize=4) --input (default: test.txt) --libs (default: one, two) -r recursive --test run in test mode -v, --verbose turn on verbose output (default: 2) Usage: 11-usage.t [-rv] [long options] [arguments] --bare <value> --define key=<value> (default: arch=i386, isize=4) --input <value> (default: test.txt) --libs <value> (default: one, two) -r recursive --test run in test mode -v [<value>], --verbose [<value>] turn on verbose output (default: 2)
- Loading branch information