From: Alexander Hartmaier Date: Thu, 8 Jan 2015 10:12:36 +0000 (+0100) Subject: whitespace fixes in Upgrading.pod X-Git-Tag: 5.90080~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=5fa5b709e0d80a7cc43694c3513666de2de4390d whitespace fixes in Upgrading.pod --- diff --git a/lib/Catalyst/Upgrading.pod b/lib/Catalyst/Upgrading.pod index 66a22c4..e6a16ab 100644 --- a/lib/Catalyst/Upgrading.pod +++ b/lib/Catalyst/Upgrading.pod @@ -56,7 +56,7 @@ to add a configuration setting for the encoding type. For example: Please note that this is different from the old stand alone plugin which applied C encoding by default (that is, if you did not set an explicit -C configuration value, it assumed you wanted UTF-8). In order to +C configuration value, it assumed you wanted UTF-8). In order to preserve backwards compatibility you will need to explicitly turn it on via the configuration setting. THIS MIGHT CHANGE IN THE FUTURE, so please consider starting to test your application with proper UTF-8 support and remove all those @@ -624,7 +624,7 @@ same effect. Having actions in your application class will now emit a warning at application startup as this is deprecated. It is highly recommended that these actions are moved into a MyApp::Controller::Root (as demonstrated by the scaffold application -generated by catalyst.pl). +generated by catalyst.pl). This warning, also affects tests. You should move actions in your test, creating a myTest::Controller::Root, like the following example: @@ -640,7 +640,7 @@ creating a myTest::Controller::Root, like the following example: sub action : Local { my ( $self, $c ) = @_; - $c->do_something; + $c->do_something; } 1;