From: Rafael Garcia-Suarez Date: Fri, 2 Jan 2009 08:55:03 +0000 (+0100) Subject: Fix a couple of typos in overloading.pm docs X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=23f6cb285656c85849665669b0a13828f0d8b395;p=p5sagit%2Fp5-mst-13.2.git Fix a couple of typos in overloading.pm docs --- diff --git a/lib/overloading.pm b/lib/overloading.pm index 23551de..5f3b84c 100644 --- a/lib/overloading.pm +++ b/lib/overloading.pm @@ -59,7 +59,7 @@ overloading - perl pragma to lexically control overloading { no overloading; - my $str = "$object"; # doesn't call strirngification overload + my $str = "$object"; # doesn't call stringification overload } # it's lexical, so this stringifies: @@ -67,7 +67,7 @@ overloading - perl pragma to lexically control overloading # it can be enabled per op no overloading qw(""); - warn "$object" + warn "$object"; # and also reenabled use overloading; @@ -84,7 +84,7 @@ Disables overloading entirely in the current lexical scope. =item C -Disables only specific overloads in the current lexical scopes. +Disables only specific overloads in the current lexical scope. =item C