X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FAction.pm;h=f77c08c7fc39cf89883a2f067685c7c3a427caf7;hp=b96bfbc3246496e1c9a1f375221d4e6d43fdeea1;hb=43c581537432e9e6dd82d10375e1aac4cbcff5fb;hpb=df3956bf69b7112ca1064d187b6313182a6b8902 diff --git a/lib/Catalyst/Action.pm b/lib/Catalyst/Action.pm index b96bfbc..f77c08c 100644 --- a/lib/Catalyst/Action.pm +++ b/lib/Catalyst/Action.pm @@ -10,7 +10,7 @@ Catalyst::Action - Catalyst Action =head1 DESCRIPTION -This class represents a Catalyst Action. You can access the object for the +This class represents a Catalyst Action. You can access the object for the currently dispatched action via $c->action. See the L for more information on how actions are dispatched. Actions are defined in L subclasses. @@ -62,7 +62,7 @@ sub execute { sub match { my ( $self, $c ) = @_; #would it be unreasonable to store the number of arguments - #the action has as it's own attribute? + #the action has as its own attribute? #it would basically eliminate the code below. ehhh. small fish return 1 unless exists $self->attributes->{Args}; my $args = $self->attributes->{Args}[0];