fixed spelling errors
[catagits/Catalyst-Runtime.git] / lib / Catalyst / PSGI.pod
index 771c14e..13148ce 100644 (file)
@@ -21,7 +21,7 @@ for specifics about your web server deployment).
 
 =head2 What is a .psgi file
 
-A C<< .psgi >> file lets you manually controll how your application code reference is built.
+A C<< .psgi >> file lets you manually control how your application code reference is built.
 
 Catalyst normally takes care of this for you, but it's possible to do it manually by
 creating a C<myapp.psgi> file in the root of your application.
@@ -60,7 +60,7 @@ engine specific fixes for uniform behaviour, as contained in:
 
 =item L<Plack::Middleware::IIS6ScriptNameFix>
 
-=item nginx - FIXME??
+=item nginx - local to Catalyst
 
 =back
 
@@ -70,7 +70,9 @@ application returned when you call C<< MyApp->psgi_app >>, and if you need
 any of this functionality, you'll need to implement this in your C<< .psgi >>
 file yourself.
 
-XXX FIXME - Add details about how to get 'standard' wrapping done if you want it.
+An apply_default_middlewares method is supplied to wrap your application
+in the default middlewares if you want this behaviour and you are providing
+your own .psgi file.
 
 =head1 SEE ALSO