Change 33789 by [EMAIL PROTECTED] on 2008/05/07 11:15:44

        Subject: [PATCH] Documentation typo fix for mro.
        From: Florian Ragwitz <[EMAIL PROTECTED]>
        Date: Sun, 4 May 2008 17:40:05 +0200
        Message-Id: <[EMAIL PROTECTED]>

Affected files ...

... //depot/perl/lib/mro.pm#9 edit

Differences ...

==== //depot/perl/lib/mro.pm#9 (text) ====
Index: perl/lib/mro.pm
--- perl/lib/mro.pm#8~31836~    2007-09-10 01:19:58.000000000 -0700
+++ perl/lib/mro.pm     2008-05-07 04:15:44.000000000 -0700
@@ -310,7 +310,7 @@
 
 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>);
End of Patch.

Reply via email to