From: Amiri Barksdale Date: Sun, 29 Aug 2010 13:58:01 +0000 (+0000) Subject: Add doc patch for go and captures. X-Git-Tag: 5.80026~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=90de76e8f1edec25c40e4a8666b0b67d14c488e8 Add doc patch for go and captures. --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 56ed57f..4d00316 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -428,6 +428,10 @@ with localized C<< $c->action >> and C<< $c->namespace >>. Like C, C escapes the processing of the current request chain on completion, and does not return to its caller. +@arguments are arguments to the final destination of $action. @captures are +arguments to the intermediate steps, if any, on the way to the final sub of +$action. + =cut sub go { my $c = shift; $c->dispatcher->go( $c, @_ ) }