From: Dave Mitchell Date: Thu, 1 Jan 2004 23:22:10 +0000 (+0000) Subject: addition to 22036 (document SUPER better): superclass may be plural X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=50506ccda720750b3bbc2c0faf490ef15854f7f3;p=p5sagit%2Fp5-mst-13.2.git addition to 22036 (document SUPER better): superclass may be plural p4raw-id: //depot/perl@22037 --- diff --git a/pod/perlbot.pod b/pod/perlbot.pod index 4507d4f..91723b7 100644 --- a/pod/perlbot.pod +++ b/pod/perlbot.pod @@ -243,8 +243,8 @@ where that method is defined. $foo->goo; $foo->google; -Note that C refers to the superclass of the current package -(C), not to the superclass of C<$self>. +Note that C refers to the superclasses of the current package +(C), not to the superclasses of C<$self>. =head1 USING RELATIONSHIP WITH SDBM diff --git a/pod/perlobj.pod b/pod/perlobj.pod index 16013fc..156a0b8 100644 --- a/pod/perlobj.pod +++ b/pod/perlobj.pod @@ -275,8 +275,8 @@ current class's C<@ISA> list. $self->SUPER::display("Name", @args); } -It is important to note that C refers to the superclass of the -I and not to the superclass of the object. Also, the +It is important to note that C refers to the superclass(es) of the +I and not to the superclass(es) of the object. Also, the C pseudo-class can only currently be used as a modifier to a method name, but not in any of the other ways that class names are normally used, eg: