From: Alexander Hartmaier Date: Fri, 29 Jul 2011 14:09:35 +0000 (+0200) Subject: fixed spelling errors X-Git-Tag: 5.90005~4^2~10^2~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=bb48c5566ee0170fd913574d2393f381d214f86c fixed spelling errors --- diff --git a/lib/Catalyst/Controller.pm b/lib/Catalyst/Controller.pm index 16b5a38..892f642 100644 --- a/lib/Catalyst/Controller.pm +++ b/lib/Catalyst/Controller.pm @@ -480,7 +480,7 @@ Sets 'path_prefix', as described below. Allows you to set the attributes that the dispatcher creates actions out of. This allows you to do 'rails style routes', or override some of the -attribute defintions of actions composed from Roles. +attribute definitions of actions composed from Roles. You can set arguments globally (for all actions of the controller) and specifically (for a single action). diff --git a/lib/Catalyst/PSGI.pod b/lib/Catalyst/PSGI.pod index d8e1435..13148ce 100644 --- a/lib/Catalyst/PSGI.pod +++ b/lib/Catalyst/PSGI.pod @@ -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 file in the root of your application. diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index c058daa..94c6400 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -228,7 +228,7 @@ Shortcut for L. =head2 $req->base Contains the URI base. This will always have a trailing slash. Note that the -URI scheme (eg., http vs. https) must be determined through heuristics; +URI scheme (e.g., http vs. https) must be determined through heuristics; depending on your server configuration, it may be incorrect. See $req->secure for more info. @@ -487,7 +487,7 @@ Shortcut for $req->headers->referer. Returns the referring page. =head2 $req->secure Returns true or false, indicating whether the connection is secure -(https). Note that the URI scheme (eg., http vs. https) must be determined +(https). Note that the URI scheme (e.g., http vs. https) must be determined through heuristics, and therefore the reliability of $req->secure will depend on your server configuration. If you are serving secure pages on the standard SSL port (443) and/or setting the HTTPS environment variable, $req->secure diff --git a/lib/Catalyst/ScriptRunner.pm b/lib/Catalyst/ScriptRunner.pm index 06b36b5..ee2b1c1 100644 --- a/lib/Catalyst/ScriptRunner.pm +++ b/lib/Catalyst/ScriptRunner.pm @@ -41,7 +41,7 @@ This class is responsible for running scripts, either in the application specifi =head2 run ($application_class, $scriptclass) -Called with two parameters, the application classs (e.g. MyApp) +Called with two parameters, the application class (e.g. MyApp) and the script class, (i.e. one of Server/FastCGI/CGI/Create/Test) =head1 AUTHORS diff --git a/lib/Catalyst/Stats.pm b/lib/Catalyst/Stats.pm index fd6ec8c..1987205 100644 --- a/lib/Catalyst/Stats.pm +++ b/lib/Catalyst/Stats.pm @@ -166,6 +166,8 @@ __PACKAGE__->meta->make_immutable(); __END__ +=for stopwords addChild getNodeValue mysub rollup setNodeValue + =head1 NAME Catalyst::Stats - Catalyst Timing Statistics Class diff --git a/lib/Catalyst/Upgrading.pod b/lib/Catalyst/Upgrading.pod index f2b6a02..f74f15e 100644 --- a/lib/Catalyst/Upgrading.pod +++ b/lib/Catalyst/Upgrading.pod @@ -460,7 +460,7 @@ The following test demonstrates the problem: use Test::More; isnt(BaseClass->can('foo'), Child->can('foo')); -=head2 Extending Catalyst::Request or other classes in an ad-hoc manner using mk_accessors +=head2 Extending Catalyst::Request or other classes in an ad hoc manner using mk_accessors Previously, it was possible to add additional accessors to Catalyst::Request (or other classes) by calling the mk_accessors class method.