Subject: | Small typo in Pod doc example |
This is very minor.
In the Synopsis for PPI::HTML the PPI::Document constructor is shown as:
my $Document = PPI::Document->load( 'script.pl' );
However, running the example generates a warning that this syntax is deprecated. As such code
snippet should probably be:
my $Document = PPI::Document->new( 'script.pl' );
John.
--