X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FActions.pod;fp=lib%2FCatalyst%2FManual%2FActions.pod;h=6b99846ae1266c6c1336e905eede6acb8e647e5a;hp=0e0bb194ff90c2d7c1548c6183ae4d2d7bbb1865;hb=f9ce297698249b24617c5a60e7c625f2005be144;hpb=f4e9de4a3171fd75d04fa8e294fd9a0ae367bc18 diff --git a/lib/Catalyst/Manual/Actions.pod b/lib/Catalyst/Manual/Actions.pod index 0e0bb19..6b99846 100644 --- a/lib/Catalyst/Manual/Actions.pod +++ b/lib/Catalyst/Manual/Actions.pod @@ -18,7 +18,7 @@ This is pretty simple. Actions work just like the normal dispatch attributes you are used to, like Local or Private: sub Hello :Local :ActionClass('SayBefore') { - $c->res->output( 'Hello '.$c->stash->{what} ); + $c->res->output( 'Hello '.$c->stash->{what} ); } In this example, we expect the SayBefore action to magically populate