From: Florian Ragwitz Date: Mon, 2 Feb 2009 12:04:19 +0000 (+0000) Subject: Fix various doc typoes. X-Git-Tag: 5.8000_06~17 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=10011c19cb6f294d1d16c1a1fb484614a7c5dcba;hp=6d27bb31757fb5f513d5c65aa54a7ea4305aa023 Fix various doc typoes. --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 4095cc9..6f111d9 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -871,7 +871,7 @@ sub path_to { =head2 $c->plugin( $name, $class, @args ) -Helper method for plugins. It creates a classdata accessor/mutator and +Helper method for plugins. It creates a class data accessor/mutator and loads and instantiates the given class. MyApp->plugin( 'prototype', 'HTML::Prototype' ); diff --git a/lib/Catalyst/Base.pm b/lib/Catalyst/Base.pm index c368fa8..659a97d 100644 --- a/lib/Catalyst/Base.pm +++ b/lib/Catalyst/Base.pm @@ -15,7 +15,7 @@ Catalyst::Base - Deprecated base class =head1 DESCRIPTION This used to be the base class for Catalyst Controllers. It -remains here for compability reasons. +remains here for compatibility reasons. =head1 SEE ALSO diff --git a/lib/Catalyst/ClassData.pm b/lib/Catalyst/ClassData.pm index 6174ffd..8ae00bb 100644 --- a/lib/Catalyst/ClassData.pm +++ b/lib/Catalyst/ClassData.pm @@ -66,7 +66,7 @@ __END__ =head1 NAME -Catalyst::ClassData - Class data acessors +Catalyst::ClassData - Class data accessors =head1 METHODS diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index 85d4b39..de287ea 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -589,7 +589,7 @@ sub read { =head2 $self->read_chunk($c, $buffer, $length) -Each engine inplements read_chunk as its preferred way of reading a chunk +Each engine implements read_chunk as its preferred way of reading a chunk of data. =cut diff --git a/lib/Catalyst/Manual/Installation/CentOS4.pod b/lib/Catalyst/Manual/Installation/CentOS4.pod index 79c1205..ccaf39a 100644 --- a/lib/Catalyst/Manual/Installation/CentOS4.pod +++ b/lib/Catalyst/Manual/Installation/CentOS4.pod @@ -306,7 +306,7 @@ Note: Once the C is complete, you may want to rerun the command to check the status of the packages listed in . Ideally, everything should return a I C message. If any packages try to re-install, the you could need to manually install the package with the -C option. Also, look for new optional dependences that C +C option. Also, look for new optional dependencies that C was not able to automatically handle. You can address these by manually installing the dependency and then re-running C. diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index fc13ca9..9bda4dc 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -399,7 +399,7 @@ Returns the path, i.e. the part of the URI after $req->base, for the current req =head2 $req->path_info -Alias for path, added for compability with L. +Alias for path, added for compatibility with L. =cut @@ -463,7 +463,7 @@ actions or regex captures. =head2 $req->snippets -C used to be called snippets. This is still available for backwoards +C used to be called snippets. This is still available for backwards compatibility, but is considered deprecated. =head2 $req->upload diff --git a/lib/Catalyst/Stats.pm b/lib/Catalyst/Stats.pm index 615cde1..ba3de68 100644 --- a/lib/Catalyst/Stats.pm +++ b/lib/Catalyst/Stats.pm @@ -324,10 +324,10 @@ from the previous profiling point. The 'rollup' flag indicates whether the reported time is the rolled up time for the block, or the elapsed time from the previous profiling point. -=head1 COMPATABILITY METHODS +=head1 COMPATIBILITY METHODS Some components might expect the stats object to be a regular Tree::Simple object. -We've added some compatability methods to handle this scenario: +We've added some compatibility methods to handle this scenario: =head2 accept diff --git a/lib/Catalyst/Upgrading.pod b/lib/Catalyst/Upgrading.pod index a2d30ba..92cc25e 100644 --- a/lib/Catalyst/Upgrading.pod +++ b/lib/Catalyst/Upgrading.pod @@ -3,7 +3,7 @@ Most applications and plugins should run unaltered on Catalyst 5.80. However as a lot of refactoring work has taken place, several changes -have been made which could cause incompatibilties, if your application +have been made which could cause incompatibilities, if your application or plugin is using deprecated code, or relying on side-effects then there could be incompatibility. @@ -26,7 +26,7 @@ Moose components for Catalyst 5.70 needed to do to be able to use the constructor provided by Moose. In 5.80 C already inherits from C. Therefor you shouldn't directly inherit from C yourself, otherwise your -Class' @ISA will not linearise with C3. +Class' @ISA will not linearize with C3. =head2 Anonymous closures installed directly into the symbol table @@ -85,7 +85,7 @@ by calling the mk_accessors class method. This is no longer supported - users should make a sub-class of the class who's behavior they would like to change, rather than globally polluting the Catalyst objects. -=head2 Confused multiple inheritence with Catalyst::Component::COMPONENT +=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT Warning message: @@ -156,7 +156,7 @@ better API should look like. In this version of Catalyst, if a component is loaded from disk, but no symbols are defined in that component's namespace after it is loaded, this warning will be issued. -This is to pretect against confusing bugs caused by mis-typing package names. +This is to protect against confusing bugs caused by mis-typing package names. This will become a fatal error in a future version.