diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-03-08 21:27:37 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-03-08 21:27:37 +0000 |
commit | 6b3df22776523c7e117a080b445b166b31464123 (patch) | |
tree | 3137d42310b802ede30bbc64dfe492c0f166cefc /cpan/parent | |
parent | 9fa86798943f58593c0291be5acd91b348948336 (diff) | |
download | perl-6b3df22776523c7e117a080b445b166b31464123.tar.gz |
Update parent to CPAN version 0.225
[DELTA]
0.225 20110308
. Applied a docpatch by Robin Barker to fix the documentation
about the warning of inheriting from yourself.
Fixes RT #66459
Diffstat (limited to 'cpan/parent')
-rw-r--r-- | cpan/parent/lib/parent.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpan/parent/lib/parent.pm b/cpan/parent/lib/parent.pm index bd67b0fa4f..8f72db86dc 100644 --- a/cpan/parent/lib/parent.pm +++ b/cpan/parent/lib/parent.pm @@ -1,7 +1,7 @@ package parent; use strict; use vars qw($VERSION); -$VERSION = '0.224'; +$VERSION = '0.225'; sub import { my $class = shift; @@ -102,7 +102,7 @@ either C<.pm> or C<.pmc>), use the following code: Attempting to inherit from yourself generates a warning. - use Foo; + package Foo; use parent 'Foo'; =back |