[Catalyst-commits] r12701 -
Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Tutorial
xenoterracide at dev.catalyst.perl.org
xenoterracide at dev.catalyst.perl.org
Wed Jan 20 01:47:57 GMT 2010
Author: xenoterracide
Date: 2010-01-20 01:47:57 +0000 (Wed, 20 Jan 2010)
New Revision: 12701
Modified:
Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod
Log:
change whitespace to reflect current formatting
Modified: Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod
===================================================================
--- Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod 2010-01-20 01:47:51 UTC (rev 12700)
+++ Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod 2010-01-20 01:47:57 UTC (rev 12701)
@@ -200,20 +200,22 @@
do this, edit C<lib/MyApp.pm> (this file is generally referred to as
your I<application class>) 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<Note:> Recent versions of C<Catalyst::Devel> have used a variety of
techniques to load these plugins/flags. For example, you might see
More information about the Catalyst-commits
mailing list