From: Jesse Sheidlower Date: Sat, 16 Jul 2005 02:33:59 +0000 (+0000) Subject: doc patches for Intro.pod (impt. ones, too) X-Git-Tag: 5.7099_04~1255 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=fb9257c1ef523c89c4d5b8accd000809ded660e9 doc patches for Intro.pod (impt. ones, too) --- diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index cb09eeb..979b130 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -679,8 +679,8 @@ inherit from this class: script/myapp_create.pl view TT TT -where the first C tells the script to create a Template Toolkit -view, and the second tells the script that its name should be C.) +where the first C tells the script that the name of the view should +be C, and the second that it should be a Template Toolkit view.) This gives us a process() method and we can now just do $c->forward('MyApp::V::TT') to render our templates. The base class makes @@ -812,9 +812,9 @@ application. package MyApp::C::Login; - sign-in : Local { } - new-password : Local { } - sign-out : Local { } + sub sign-in : Local { } + sub new-password : Local { } + sub sign-out : Local { } package MyApp::C::Catalog;