X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FMoreCatalystBasics.pod;h=519784209841cee8979a7235f8e5905554888535;hp=aa66e12e17de6cc64213bbe1d99973c37e8af17e;hb=0c51850e9e3daa7ba2dc9194dec7b8fc2b3a64c0;hpb=816fc503ea59fc23506afda7cc5104bb152b3b83 diff --git a/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod index aa66e12..5197842 100644 --- a/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod @@ -272,7 +272,7 @@ Catalyst components. It is used to pass information between components and provide access to Catalyst and plugin functionality. B: You may see the C<$c-Emodel('DB::Book')> used above -written as C<$c-Emodel('DB')-Eresultset('Book)>. The two +written as C<$c-Emodel('DB')-Eresultset('Book')>. The two are equivalent. B Catalyst actions are regular Perl methods, but they make use @@ -309,7 +309,7 @@ TT (for more information on TT, see L). Other popular view technologies include Mason (L and L) and L -(L). +(L). =head2 Create a Catalyst View Using C @@ -377,7 +377,7 @@ of the package where it is used. Therefore, in C, C<__PACKAGE__> is equivalent to C. There are a variety of options you can use, such as 'undef', 'all', -'service', 'context', 'parser', 'provider', and 'service'. See +'service', 'context', 'parser' and 'provider'. See L for more information (remove the C portion of the name shown in the TT docs and convert to lower case for use inside Catalyst). @@ -727,7 +727,7 @@ used the following SQL to retrieve the data: because we enabled DBIC_TRACE. -You now the beginnings of a simple but workable web application. +You now have the beginnings of a simple but workable web application. Continue on to future sections and we will develop the application more fully.