diff options
author | David Landgren <david@landgren.net> | 2007-09-28 22:42:56 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-04 14:28:34 +0000 |
commit | 353c650532037e4006fbdb2176350717f320f7c3 (patch) | |
tree | d168025606b4a4daf862755b087c4ba3b29e97b5 /pod/perl595delta.pod | |
parent | 94fcd414575e04d8b809003ba7bca1216090abff (diff) | |
download | perl-353c650532037e4006fbdb2176350717f320f7c3.tar.gz |
POD cleanups
Message-ID: <46FD4B30.9070802@landgren.net>
p4raw-id: //depot/perl@32026
Diffstat (limited to 'pod/perl595delta.pod')
-rw-r--r-- | pod/perl595delta.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perl595delta.pod b/pod/perl595delta.pod index cbe033a010..aaf8618122 100644 --- a/pod/perl595delta.pod +++ b/pod/perl595delta.pod @@ -243,12 +243,12 @@ to, 5.9.5. A new pragma, C<mro> (for Method Resolution Order) has been added. It permits to switch, on a per-class basis, the algorithm that perl uses to -find inherited methods in case of a mutiple inheritance hierachy. The +find inherited methods in case of a multiple inheritance hierarchy. The default MRO hasn't changed (DFS, for Depth First Search). Another MRO is available: the C3 algorithm. See L<mro> for more information. (Brandon Black) -Note that, due to changes in the implentation of class hierarchy search, +Note that, due to changes in the implementation of class hierarchy search, code that used to undef the C<*ISA> glob will most probably break. Anyway, undef'ing C<*ISA> had the side-effect of removing the magic on the @ISA array and should not have been done in the first place. |