corrected tyop
Matt S Trout [Wed, 24 May 2006 00:17:02 +0000 (00:17 +0000)]
lib/Catalyst/Manual/Actions.pod

index 36861f8..838878f 100644 (file)
@@ -16,7 +16,7 @@ leaving you full freedom to customize them.
 This is pretty simple. It works just like the normal dispatch attributes you
 are used to, like Local or Private:
 
-  sub Hello : Local Action('SayBefore') { 
+  sub Hello :Local :ActionClass('SayBefore') { 
        $c->res->output( 'Hello '.$c->stash->{what} );
   }