Fix typos in POD and comments. RT#85171
Dagfinn Ilmari Mannsåker [Sun, 12 Jan 2014 23:35:36 +0000 (23:35 +0000)]
CHANGES
lib/Test/WWW/Mechanize/Catalyst.pm

diff --git a/CHANGES b/CHANGES
index dffa4b9..9fc943a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,7 @@
 Revision history for Perl module Test::WWW::Mechanize::Catalyst:
 
      - Use Class::Load instead of Class::MOP::load_class(). RT#90978
+     - Fix typos in POD and comments. RT#85171
 
 0.58 Sat Jun 30 17:01 BST 2012
      - Fix external server test.
index 4baffd1..9135724 100644 (file)
@@ -11,7 +11,7 @@ use Test::WWW::Mechanize;
 
 extends 'Test::WWW::Mechanize', 'Moose::Object';
 
-#use namespace::clean -execept => 'meta';
+#use namespace::clean -except => 'meta';
 
 our $VERSION = '0.58';
 our $APP_CLASS;
@@ -176,7 +176,7 @@ sub _do_catalyst_request {
         Catalyst::Test::local_request($self->{catalyst_app}, $request);
 
 
-    # LWP would normally do this, but we dont get down that far.
+    # LWP would normally do this, but we don't get down that far.
     $response->request($request);
 
     return $response
@@ -185,7 +185,7 @@ sub _do_catalyst_request {
 sub _check_external_request {
     my ($self, $request) = @_;
 
-    # If there's no host then definatley not an external request.
+    # If there's no host then definitley not an external request.
     $request->uri->can('host_port') or return;
 
     if ( $self->allow_external && $request->uri->host_port ne 'localhost:80' ) {
@@ -545,7 +545,7 @@ L<Test::WWW::Mechanize>, L<WWW::Mechanize>.
 
 =head1 AUTHOR
 
-Ash Berlin C<< <ash@cpan.org> >> (current maintiner)
+Ash Berlin C<< <ash@cpan.org> >> (current maintainer)
 
 Original Author: Leon Brocard, C<< <acme@astray.com> >>