From: Jesse Sheidlower Date: Tue, 5 Jul 2005 13:58:56 +0000 (+0000) Subject: added description of detach in Intro.pod X-Git-Tag: 5.7099_04~1272 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=13436c1448185c749da62c06dd4ed9609599f01a;hp=62d9b03003fb7bc4be52d27b67cf0edcaaf18162 added description of detach in Intro.pod --- diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 50ffca5..57281a1 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -615,8 +615,11 @@ Here are some examples of how to forward to classes and methods. } Note that C returns to the calling action and continues -processing after the action finishes. Catalyst will automatically try -to call process() if you omit the method. +processing after the action finishes. If you want all further processing +in the calling action to stop, use C instead, which will execute +the Ced action and not return to the calling sub. In both cases, +Catalyst will automatically try to call process() if you omit the +method. =head3 Components