summaryrefslogtreecommitdiff
path: root/lib/overload.pm
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-03-18 20:04:24 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-18 20:04:24 +0000
commit88c28ceba84d380fbac88f13c3dfcca0d1b7f014 (patch)
tree4dd6fabae2efc0d6e3ed7185cf92ac4c262a5760 /lib/overload.pm
parent7ddf2a0a82284c8cbfd954bcff9ec9497fd3403a (diff)
downloadperl-88c28ceba84d380fbac88f13c3dfcca0d1b7f014.tar.gz
Retract the changes made at #9176 to Neil's and Ilya's module pods.
p4raw-id: //depot/perl@9206
Diffstat (limited to 'lib/overload.pm')
-rw-r--r--lib/overload.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/overload.pm b/lib/overload.pm
index d355f6aa85..21a4b671ff 100644
--- a/lib/overload.pm
+++ b/lib/overload.pm
@@ -267,7 +267,7 @@ is called with arguments C<($a,undef,'')> when $a++ is executed.
Two types of mutators have different calling conventions:
-=over 4
+=over
=item C<++> and C<-->
@@ -450,7 +450,7 @@ A computer-readable form of the above table is available in the hash
Inheritance interacts with overloading in two ways.
-=over 4
+=over
=item Strings as values of C<use overload> directive
@@ -1028,7 +1028,7 @@ reference to the intermediate array, which keeps a reference to an
actual array, and the access hash. The tie()ing object for the access
hash is a reference to a reference to the actual array, so
-=over 4
+=over
=item *
@@ -1058,8 +1058,8 @@ Put this in F<symbolic.pm> in your Perl library directory:
}
This module is very unusual as overloaded modules go: it does not
-provide any usual overloaded operators, instead it provides the
-L<Last Resort> operator C<nomethod>. In this example the corresponding
+provide any usual overloaded operators, instead it provides the L<Last
+Resort> operator C<nomethod>. In this example the corresponding
subroutine returns an object which encapsulates operations done over
the objects: C<new symbolic 3> contains C<['n', 3]>, C<2 + new
symbolic 3> contains C<['+', 2, ['n', 3]]>.