X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F03_MoreCatalystBasics.pod;h=4a96d18921cb230c697549271e62320ea1000c3d;hp=29006b380fff0cbd05b10884de886133a91f73a4;hb=1dc333c7b1dbb2334c1a263f5c19e6191f5562a8;hpb=c12b0d35e3f85926c6cfd873fdfb08496b3770fd diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index 29006b3..4a96d18 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -200,20 +200,22 @@ For our application, we want to add one new plugin into the mix. To do this, edit C (this file is generally referred to as your I) and delete the lines with: - use Catalyst qw/-Debug - ConfigLoader - Static::Simple/; + use Catalyst qw/ + -Debug + ConfigLoader + Static::Simple + /; Then replace it with: # Load plugins use Catalyst qw/ - -Debug - ConfigLoader - Static::Simple - - StackTrace - /; + -Debug + ConfigLoader + Static::Simple + + StackTrace + /; B Recent versions of C have used a variety of techniques to load these plugins/flags. For example, you might see