Spell-check fixes in lib
H.Merijn Brand [Mon, 7 Jun 2010 10:17:22 +0000 (12:17 +0200)]
lib/Search/Dict.pm
lib/UNIVERSAL.pm

index 199fa5f..5cdd2f4 100644 (file)
@@ -35,7 +35,7 @@ If I<$fold> is true, ignore case.  The default is to honour case.
 
 If there are only three arguments and the third argument is a hash
 reference, the keys of that hash can have values C<dict>, C<fold>, and
-C<comp> or C<xfrm> (see below), and their correponding values will be
+C<comp> or C<xfrm> (see below), and their corresponding values will be
 used as the parameters.
 
 If a comparison subroutine (comp) is defined, it must return less than zero,
index d11b893..e30f5a7 100644 (file)
@@ -147,7 +147,7 @@ I<undef>.  This includes methods inherited or imported by C<$obj>, C<CLASS>, or
 C<VAL>.
 
 C<can> cannot know whether an object will be able to provide a method through
-AUTOLOAD (unless the object's class has overriden C<can> appropriately), so a
+AUTOLOAD (unless the object's class has overridden C<can> appropriately), so a
 return value of I<undef> does not necessarily mean the object will not be able
 to handle the method call. To get around this some module authors use a forward
 declaration (see L<perlsub>) for methods they will handle via AUTOLOAD. For