Documentation typo fix for mro.
Florian Ragwitz [Sun, 4 May 2008 17:40:05 +0000 (19:40 +0200)]
Message-Id: <1209915605-11248-1-git-send-email-rafl@debian.org>

p4raw-id: //depot/perl@33789

lib/mro.pm

index 858b8e5..d4be79a 100644 (file)
@@ -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>);