applying doc patch regarding :Private from Troy Davis
Jonathan Rockway [Mon, 12 Feb 2007 21:27:31 +0000 (21:27 +0000)]
lib/Catalyst/Manual/Intro.pod

index 5aff621..941c021 100644 (file)
@@ -819,8 +819,9 @@ dispatch type, please see L<Catalyst::DispatchType::Chained>.
     sub foo : Private { }
 
 Matches no URL, and cannot be executed by requesting a URL that
-corresponds to the action key. Private actions can be executed only
-inside a Catalyst application, by calling the C<forward> method:
+corresponds to the action key. Catalyst's :Private attribute is exclusive
+and doesn't work with other attributes. Private actions can be executed
+only inside a Catalyst application, by calling the C<forward> method:
 
     $c->forward('foo');