Subject: | A couple of bugs in the Synopsis section |
In the Synopsis section of the POD, the example has a couple of bugs:
my $hr = Net::ThirtySevenSignals::Highrise(
should be
my $hr = Net::ThirtySevenSignals::Highrise->new(
my $people = $hr->list_all_people;
should be
my $people = $hr->people_list_all;