This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
048d9da
)
Documentation typo fix for mro.
author
Florian Ragwitz
<rafl@debian.org>
Sun, 4 May 2008 17:40:05 +0000
(19:40 +0200)
committer
H.Merijn Brand
<h.m.brand@xs4all.nl>
Wed, 7 May 2008 11:15:44 +0000
(11:15 +0000)
Message-Id: <
1209915605
-11248-1-git-send-email-rafl@debian.org>
p4raw-id: //depot/perl@33789
lib/mro.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/mro.pm
b/lib/mro.pm
index
858b8e5
..
d4be79a
100644
(file)
--- a/
lib/mro.pm
+++ b/
lib/mro.pm
@@
-310,7
+310,7
@@
exist.
In simple cases, it is equivalent to:
- $self->next::method(@_) if $self->next
_
can;
+ $self->next::method(@_) if $self->next
::
can;
But there are some cases where only this solution
works (like C<goto &maybe::next::method>);