updated changes
John Napiorkowski [Mon, 18 Mar 2013 20:40:00 +0000 (16:40 -0400)]
Changes
lib/Catalyst/DispatchType/Chained.pm

diff --git a/Changes b/Changes
index df04fd5..9c184f3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 # This file documents the revision history for Perl extension Catalyst.
 
 5.90021 - TBA
+  - documentation updates around forwarding to chained actions
   - Fixed bug when a PSGI engine need to use psgix logger
   - Added cpanfile as a way to notice we are a dev checkout
   - Added 'x-tunneled-method' HTTP Header method override to match features in
index 1a3fd56..ec0e743 100644 (file)
@@ -685,9 +685,11 @@ of the endpoint of the chain, not on the chained actions way. The
 C<auto> actions will be run before the chain dispatching begins. In
 every other aspect, C<auto> actions behave as documented.
 
-The C<forward>ing to other actions does just what you would expect. But if
-you C<detach> out of a chain, the rest of the chain will not get called
-after the C<detach>.
+The C<forward>ing to other actions does just what you would expect. ie
+only the target action is run. The actions that that action is chained
+to are not run.
+If you C<detach> out of a chain, the rest of the chain will not get
+called after the C<detach>.
 
 =head2 match_captures