summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-04-26 08:48:25 -0600
committerKarl Williamson <public@khwilliamson.com>2011-05-18 11:15:02 -0600
commit111441a8f876838bc1e631325e625dc0e4a31751 (patch)
treeeb95367735a2ee08e2cf1c338c6ed6eb0cc27bbe
parent2702142091e79b769abcfd739e21ca6669be571f (diff)
downloadperl-111441a8f876838bc1e631325e625dc0e4a31751.tar.gz
base.pm: pod: Remove obsolete references
-rw-r--r--dist/base/lib/base.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/base/lib/base.pm b/dist/base/lib/base.pm
index 8c60b614fa..3fd288c350 100644
--- a/dist/base/lib/base.pm
+++ b/dist/base/lib/base.pm
@@ -2,7 +2,7 @@ package base;
use strict 'vars';
use vars qw($VERSION);
-$VERSION = '2.16';
+$VERSION = '2.17';
$VERSION = eval $VERSION;
# constant.pm is slow
@@ -224,8 +224,8 @@ in the base package, setting it to the string C<-1, set by base.pm>.
C<base> will also initialize the fields if one of the base classes has it.
Multiple inheritance of fields is B<NOT> supported, if two or more base classes
-each have inheritable fields the 'base' pragma will croak. See L<fields>,
-L<public> and L<protected> for a description of this feature.
+each have inheritable fields the 'base' pragma will croak. See L<fields>
+for a description of this feature.
The base class' C<import> method is B<not> called.