fixed warnings in tests
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Intro.pod
index 0ee9174..c25b9ff 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} );
     }