Skip to content

Commit

Permalink
Rename init_globals() to initialize()
Browse files Browse the repository at this point in the history
Per suggestion from rjbs

Signed-off-by: James E Keenan <jkeenan@cpan.org>
  • Loading branch information
jkeenan committed May 12, 2021
1 parent 2572daf commit e411569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/Pod-Html/lib/Pod/Html.pm
Expand Up @@ -226,7 +226,7 @@ sub pod2html {
local $_;

my $self = Pod::Html->new();
$self->init_globals();
$self->initialize();

my $opts = process_command_line;
$self->process_options($opts);
Expand Down Expand Up @@ -264,7 +264,7 @@ sub pod2html {
$self->write_file();
}

sub init_globals {
sub initialize {
my $self = shift;
$self->{Cachedir} = "."; # The directory to which directory caches
# will be written.
Expand Down

0 comments on commit e411569

Please sign in to comment.