Added some stuff to the intro
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Intro.pod
index 0ee9174..407daa7 100644 (file)
@@ -237,7 +237,7 @@ The last of these, the stash, is a universal hash for sharing data among applica
         $c->forward('show-message');
     }
 
-    show-message : Private {
+    sub show-message : Private {
         my ( $self, $c ) = @_;
         $c->res->output( $c->stash->{message} );
     }
@@ -367,7 +367,8 @@ false, it would look like this:
 
 =back
 
-I<Note:> You can also die in the autochain action, in that case,
+I<Note:> auto actions have to return a true value to continue processing!
+You can also die in the autochain action, in that case,
 the request will go straight to the finalize stage, without processing
 further actions.