[Catalyst-commits] r9738 - Catalyst-Runtime/5.80/trunk/lib/Catalyst
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Sat Apr 18 18:14:36 GMT 2009
Author: t0m
Date: 2009-04-18 19:14:36 +0100 (Sat, 18 Apr 2009)
New Revision: 9738
Modified:
Catalyst-Runtime/5.80/trunk/lib/Catalyst/Delta.pod
Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod
Log:
Fix a couple of real spelling errors, change a couple of spellings to en_US, as the rest of the project is spelt like that
Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Delta.pod
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Delta.pod 2009-04-18 17:47:02 UTC (rev 9737)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Delta.pod 2009-04-18 18:14:36 UTC (rev 9738)
@@ -1,4 +1,4 @@
-=head1 Deltachanges from 5.7 to 5.8
+=head1 Delta changes from 5.7 to 5.8
This is an overview of the user visible changes in 5.8.
@@ -78,7 +78,7 @@
Added code method as an alias for C<< $res->status >>
-=head2 Consequences of the Moose backend
+=head2 Consequences of the Moose back end
=over
@@ -103,7 +103,7 @@
There is a reasonable API in Catalyst::Controller for working with
and registering actions, allowing a controller sub-class to replace
-subroutine attributes for action declerations with an alternate
+subroutine attributes for action declarations with an alternate
syntax.
=item *
@@ -124,7 +124,7 @@
=item *
-Don't ignore SIGCHLD while handling requests with the dev server, so that
+Don't ignore SIGCHLD while handling requests with the development server, so that
system() and other ways of creating child processes work as expected.
=item *
Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod 2009-04-18 17:47:02 UTC (rev 9737)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod 2009-04-18 18:14:36 UTC (rev 9738)
@@ -57,7 +57,7 @@
to use the constructor provided by Moose, whilst working (if you do some hacks
with the C< BUILDARGS > method), will not work with Catalyst 5.80 as
C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
-to linearise.
+to linearize.
The fix for this is to not inherit directly from C<Moose::Object>
yourself. Having components which do not inherit their constructor from
@@ -132,7 +132,7 @@
*$full_method_name = subname $full_method_name, sub { ... };
Additionally, you can take advantage of Catalysts use of L<Class::MOP> and
-install the closure using the appropriate metaclass. Example:
+install the closure using the appropriate meta class. Example:
use Class::MOP;
my $metaclass = Moose::Meta::Class->initialize($package_name);
@@ -140,7 +140,7 @@
=head2 Hooking into application setup
-To execute code during application startup the following snippet in MyApp.pm
+To execute code during application start-up the following snippet in MyApp.pm
used to work:
sub setup {
@@ -300,7 +300,7 @@
=head2 $c->plugin method
-Calling the plugin method is deprecated, and calling it at runtime is B<highly
+Calling the plugin method is deprecated, and calling it at run time is B<highly
deprecated>.
Instead you are recommended to use L< Catalyst::Model::Adaptor > or similar to
More information about the Catalyst-commits
mailing list