Skip Menu |

This queue is for tickets about the Net-Google CPAN distribution.

Report information
The Basics
Id: 50554
Status: new
Priority: 0/
Queue: Net-Google

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

Bug Information
Severity: Normal
Broken in: 1.0
Fixed in: (no value)



Subject: Example code for Net::Google::Spelling incorrectly constructs object
I believe that the example code in the "Synopsis" for Net::Google::Spelling contains a typo. The current "Synopsis" provides the example code: my $spelling = Net::Google::Spelling(\%args); This line looks like it is supposed to be constructing a new Net::Google::Spelling object, but it is missing a call to new(). To correct this error, the line should probably be changed to read: my $spelling = Net::Google::Spelling->new(\%args);