fix session -> Plugin::Session docu error in the manual for flash_to_stash, fixes...
Tom Feist [Sat, 14 May 2011 18:33:30 +0000 (19:33 +0100)]
lib/Catalyst/Manual/Tutorial/05_Authentication.pod

index 304a128..bc19221 100644 (file)
@@ -846,14 +846,14 @@ C<__PACKAGE__-E<gt>config> setting to something like:
             name    => 'MyApp',
             # Disable deprecated behavior needed by old applications
             disable_component_resolution_regex_fallback => 1,
-            session => { flash_to_stash => 1 },
+            'Plugin::Session' => { flash_to_stash => 1 },
         );
 
 B<or> add the following to C<myapp.conf>:
 
-    <session>
+    <Plugin::Session>
         flash_to_stash   1
-    </session>
+    </Plugin::Session>
 
 The C<__PACKAGE__-E<gt>config> option is probably preferable here
 since it's not something you will want to change at runtime without it