Pod::Html: use parent instead of base
authorRicardo Signes <rjbs@cpan.org>
Mon, 9 Sep 2013 02:01:47 +0000 (22:01 -0400)
committerRicardo Signes <rjbs@cpan.org>
Thu, 12 Sep 2013 23:49:17 +0000 (19:49 -0400)
ext/Pod-Html/lib/Pod/Html.pm

index 4562b4b..f9f05b3 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 require Exporter;
 
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
-$VERSION = 1.20;
+$VERSION = 1.21;
 @ISA = qw(Exporter);
 @EXPORT = qw(pod2html htmlify);
 @EXPORT_OK = qw(anchorify);
@@ -709,7 +709,7 @@ sub _unixify {
 package Pod::Simple::XHTML::LocalPodLinks;
 use strict;
 use warnings;
-use base 'Pod::Simple::XHTML';
+use parent 'Pod::Simple::XHTML';
 
 use File::Spec;
 use File::Spec::Unix;