X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial.pod;h=adfc086ed3142122e371ccede80852d5091b346a;hb=1c14b7796fa01f2430bc59481aa37be748b2c661;hp=eb1af711b21645a491830fc3c9ee1d5efdc1f23f;hpb=2feb6632ee43ec51730191d6ffb7ddd7946c647e;p=catagits%2FCatalyst-Runtime.git 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