Skip Menu |

This queue is for tickets about the HTML-LinkExtractor CPAN distribution.

Report information
The Basics
Id: 7828
Status: resolved
Priority: 0/
Queue: HTML-LinkExtractor

People
Owner: Nobody in particular
Requestors: itub [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: (no value)



Subject: POD says 'type' where it should say 'tag'
In this section: ---------------------------- head2 C<$LX-E<gt>links()> Only after you call C<parse> will this method return anything. This method returns a reference to an ArrayOfHashes, which basically looks like (Data::Dumper output) $VAR1 = [ { type => 'img', src => 'image.png' }, ]; Please note that if yo provide a callback this array will be empty. ------------------------- The example should say $VAR1 = [ { tag => 'img', src => 'image.png' }, ]; Please note that if you provide a callback this array will be empty.