Update Upgrading docs
Florian Ragwitz [Tue, 1 Mar 2011 18:37:23 +0000 (19:37 +0100)]
lib/Catalyst/Upgrading.pod

index 92db2ae..e51e18a 100644 (file)
@@ -75,7 +75,7 @@ previously should entirely continue to work in this release with no changes.
 
 However, if you have an C<app.psgi> script, then you no longer
 need to specify the PSGI engine.  Instead, the L<Catalyst> application class
-now has a new method C<raw_psgi_app> which returns a L<Plack> compatible coderef
+now has a new method C<psgi_app> which returns a L<Plack> compatible coderef
 which you can wrap in middleware of your choice.
 
 Catalyst will use the .psgi for your application if it is located in the C<home>
@@ -101,7 +101,7 @@ Instead, you now say:
 
     builder {
         enable ... #enable your desired middleware
-        MyCatalystApp->raw_psgi_app;
+        MyCatalystApp->psgi_app;
     };
 
 And also rename C<< script/myapp.psgi >> to C<< myapp.psgi >>.