Subject: | Bug on the documentation of Flickr::Photo |
Found out following in Flickr::Photo doc:
===
use Flickr::Photo;
my $photo = Flickr::Photo->new($flickr_api_key);
if ($photo->id({id => 12345678}) {
my $owner = $photo->owner;
my $title = $photo->title;
}
===
Closing bracket for 'if' is not present. It should have been
===
if ($photo->id({id => 12345678})) {
===