[Catalyst-commits] r14483 - trunk/examples/CatalystAdvent/root/2013
jnapiorkowski at dev.catalyst.perl.org
jnapiorkowski at dev.catalyst.perl.org
Mon Dec 9 22:52:30 GMT 2013
Author: jnapiorkowski
Date: 2013-12-09 22:52:30 +0000 (Mon, 09 Dec 2013)
New Revision: 14483
Modified:
trunk/examples/CatalystAdvent/root/2013/16.pod
Log:
typo fixes
Modified: trunk/examples/CatalystAdvent/root/2013/16.pod
===================================================================
--- trunk/examples/CatalystAdvent/root/2013/16.pod 2013-12-09 15:11:25 UTC (rev 14482)
+++ trunk/examples/CatalystAdvent/root/2013/16.pod 2013-12-09 22:52:30 UTC (rev 14483)
@@ -1,10 +1,10 @@
-=head1 CataylstX::Controller::PSGI - Using Plack apps inside Catalyst Controllers - Part 1
+=head1 CatalystX::Controller::PSGI - Using Plack apps inside Catalyst Controllers - Part 1
=head1 Overview
Sometimes you might want to use a Plack app as part of your application, but
don't want to mess around with your .psgi file mounting different parts under
-different urls, or running seperate servers and setting up rewrite/proxy rules.
+different urls, or running separate servers and setting up rewrite/proxy rules.
=head1 Introduction
@@ -13,7 +13,7 @@
we want to start using Catalyst, but we don't want to rewite our decade old legacy
app, and we don't want to run multiple servers or mess around with rewrite rules.
-=head1 Prequisites
+=head1 Prerequisites
L<Task::Catalyst>, L<CatalystX::Controller::PSGI>
@@ -35,7 +35,7 @@
=head1 The Code
-We'll start by creating a new Cataylst app
+We'll start by creating a new Catalyst app
catalyst.pl MyApp
@@ -45,7 +45,7 @@
legacy .psgi as the root action
edit MyApp/lib/MyApp/Controller/Root.pm and replace everything with the following,
-since cataylst.pl has given us a lot of helpful defaults, which are not helpful
+since Catalyst.pl has given us a lot of helpful defaults, which are not helpful
in our case.
package MyApp::Controller::Root;
@@ -82,7 +82,7 @@
is also the / of the app, because this is the root controller.
So now any url will match the root action (call is registered as :Local, meaning
-it can take an unlimited amount of arguments). But it still won't work, becuase
+it can take an unlimited amount of arguments). But it still won't work, because
bin/legacy.psgi doesn't exist. So let's fix that by creating it.
use strict;
@@ -138,7 +138,7 @@
as we've added the Catalyst request/response cycle in, but it doesn't matter, as
we're going to gain more than we've lost in the long term.
-Next lets replace I</some/other/action> with our new awesome cataylst code.
+Next lets replace I</some/other/action> with our new awesome Catalyst code.
Create the file MyApp/lib/MyApp/Controller/Some.pm
More information about the Catalyst-commits
mailing list