projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e46c382
)
Fix a couple of typos in overloading.pm docs
Rafael Garcia-Suarez [Fri, 2 Jan 2009 08:55:03 +0000 (09:55 +0100)]
lib/overloading.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/overloading.pm
b/lib/overloading.pm
index
23551de
..
5f3b84c
100644
(file)
--- 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<no overloading @ops>
-Disables only specific overloads in the current lexical scopes.
+Disables only specific overloads in the current lexical scope.
=item C<use overloading>