Subject: | Error in synopsis |
In the last example in the SYNOPSIS is this line:
my $te = HTML::TableExtract->new( headers => qw(Fee Fie Foe Fum) );
which I'm assuming should be an arrayref instead:
my $te = HTML::TableExtract->new( headers => [qw(Fee Fie Foe Fum)] );