From: Florian Ragwitz Date: Sun, 4 May 2008 17:40:05 +0000 (+0200) Subject: Documentation typo fix for mro. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=76051f89dc2ad7585c06b6e815ceebf5a2c5e909;p=p5sagit%2Fp5-mst-13.2.git Documentation typo fix for mro. Message-Id: <1209915605-11248-1-git-send-email-rafl@debian.org> p4raw-id: //depot/perl@33789 --- diff --git a/lib/mro.pm b/lib/mro.pm index 858b8e5..d4be79a 100644 --- 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);