Skip Menu |

This queue is for tickets about the App-CLI CPAN distribution.

Report information
The Basics
Id: 63798
Status: resolved
Worked: 1 min
Priority: 0/
Queue: App-CLI

People
Owner: Nobody in particular
Requestors: javibarroso [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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 !
fixed in repository please http://github.com/c9s/app-cli On Fri Dec 10 10:05:31 2010, javibarroso@gmail.com wrote: Show quoted text
> 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 Show quoted text
> > use constant options => qw( > "h|help" => "help", > "verbose" => "verbose", > 'n|name=s' => 'name', > ); > > Should be: > use constant option => ( .... ) # without qw > > Thanks !
Subject: Re: [rt.cpan.org #63798] Typo in manpage
Date: Sun, 12 Dec 2010 00:27:43 +0100
To: bug-App-CLI [...] rt.cpan.org
From: Javier Barroso <javibarroso [...] gmail.com>
Perfect! Thank you again ! On Sat, Dec 11, 2010 at 5:29 PM, J.W.Hsu via RT <bug-App-CLI@rt.cpan.org> wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=63798 > > > fixed in repository > > please http://github.com/c9s/app-cli > > On Fri Dec 10 10:05:31 2010, javibarroso@gmail.com wrote:
>> 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 !
> > > >
Unfortunately the original patch has been lost, since c9s's GitHub repository for this project has been deleted. Nevertheless, the typo has been fixed in the most recent version (0.45).