From: Matt S Trout Date: Thu, 20 Apr 2006 14:06:22 +0000 (+0000) Subject: Type fix from ash X-Git-Tag: 5.7099_04~627 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=fabf3a100d2255ee3d0d4f7af57b57cd658feceb Type fix from ash --- diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index a6da2a1..65c633d 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -633,7 +633,7 @@ be reset. sub check_message : Private { my ( $self, $c ) = @_; - my $first_argument = $c->req->args[0]; # now = 'test1' + my $first_argument = $c->req->args->[0]; # now = 'test1' # do something... }