Subject: | Typo in manpage |
Date: | Fri, 10 Dec 2010 16:05:01 +0100 |
To: | bug-App-CLI [...] rt.cpan.org |
From: | Javier Barroso <javibarroso [...] gmail.com> |
Environment:
App-CLI-0.313
perl 5.10.1
Debian sid
In manpage there is a typo in first options var declaration:
package MyApp::List;
use base qw(App::CLI::Command); # any (SUB)COMMAND of your App
use constant options => qw(
"h|help" => "help",
"verbose" => "verbose",
'n|name=s' => 'name',
);
Should be:
use constant option => ( .... ) # without qw
Thanks !