From: Marcus Ramberg Date: Thu, 7 Apr 2005 21:43:39 +0000 (+0000) Subject: helper generates ::V::, not ::View:: X-Git-Tag: 5.7099_04~1591 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=1c14b7796fa01f2430bc59481aa37be748b2c661 helper generates ::V::, not ::View:: --- diff --git a/lib/Catalyst/Manual/Tutorial.pod b/lib/Catalyst/Manual/Tutorial.pod index eb1af71..adfc086 100644 --- a/lib/Catalyst/Manual/Tutorial.pod +++ b/lib/Catalyst/Manual/Tutorial.pod @@ -250,14 +250,14 @@ script that Catalyst set up as part of the skeleton application: $ script/create.pl view TT TT -this generates a view component named C, which you +this generates a view component named C, which you might use by forwarding from your C action: # In My::App or My::App::Controller::SomeController sub end : Private { my($self, $c) = @_; - $c->forward('My::App::View::TT'); + $c->forward('My::App::V::TT'); } The generated TT view component simply subclasses the