Subject: | Incorrect documentation for constructor (2nd try) |
(That first ticket was the result of a premature Enter-key tap. Whoops.)
In Flickr::Photoset, the documentation says,
my $photoset = Flickr::Photoset->new($flickr_api_key);
This results in an error. What it should really say is,
my $photoset = Flickr::Photoset->new( { api_key => $flickr_api_key } );
Other modules in the distribution may have this bug as well.