X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F03_MoreCatalystBasics.pod;h=9a6c1fd88a3648a3aca86f50d950ebb461ee25f5;hb=a0deb1a821d358de5c902f70fcd9a50258057ade;hp=c9b6f4d87d94decf9d897ae279f0424bcd6afd26;hpb=7af3a61756f0f85bde78785c18d146b62929675a;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index c9b6f4d..9a6c1fd 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -82,7 +82,7 @@ the most trouble-free way to get started with Catalyst. =head1 CREATE A NEW APPLICATION The remainder of the tutorial will build an application called C. -First use the Catalyst C script to initialize the framework +First use the Catalyst F script to initialize the framework for the C application (make sure you aren't still inside the directory of the C application from the previous chapter of the tutorial or in a directory that already has a "MyApp" subdirectory): @@ -116,7 +116,7 @@ general, they do this by adding additional methods to the C object (generally written as C<$c>) that Catalyst passes to every component throughout the framework. -Take a look at the file C that the helper created above. +Take a look at the file F that the helper created above. By default, Catalyst enables three plugins/flags: =over 4 @@ -126,7 +126,7 @@ By default, Catalyst enables three plugins/flags: C<-Debug> Flag Enables the Catalyst debug output you saw when we started the -C