Subject: | Don't use indirect object notation |
The indirect object notation is strongly discouraged these days. A google for "perl indirect object notation" should turn up several articles discussing why.
So the SYNOPSIS shouldn't have:
my $wun = new WWW::Wunderground::API('Fairfax, VA');
But instead should show:
my $wun = WWW::Wunderground::API->new('Fairfax, VA');