Skip to content

Commit

Permalink
After eval-ing $VERSION, assign return value back to $VERSION
Browse files Browse the repository at this point in the history
Remove superfluous assignment to @isa.

Per rjbs code review in Perl#18950

Signed-off-by: James E Keenan <jkeenan@cpan.org>
  • Loading branch information
jkeenan committed Jul 6, 2021
1 parent 576e422 commit cc35971
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ext/Pod-Html/lib/Pod/Html.pm
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package Pod::Html;
use strict;
require Exporter;
use Exporter 'import';

our $VERSION = 1.27_001;
eval $VERSION;
our @ISA = qw(Exporter);
our $VERSION = 1.29;
$VERSION = eval $VERSION;
our @EXPORT = qw(pod2html);

use Config;
Expand Down

0 comments on commit cc35971

Please sign in to comment.