Skip to content

Commit

Permalink
s/has/is/g
Browse files Browse the repository at this point in the history
  • Loading branch information
xaicron committed Feb 14, 2012
1 parent 8879c63 commit e994587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/WWW/Google/ClientLogin.pm
Expand Up @@ -102,7 +102,7 @@ WWW::Google::ClientLogin - Yet Another Google ClientLogin Client Library
);
my $res = $client->authenticate;
die $res->status_line if $res->has_error;
die $res->status_line if $res->is_error;
my $auth_token = $res->auth_token;
Expand Down Expand Up @@ -172,7 +172,7 @@ SEE ALSO L<< http://code.google.com/intl/us/apis/accounts/docs/AuthForInstalledA
Send authentication request for Google ClientLogin. Returned L<< WWW::Google::ClientLogin::Response >> object.
my $res = $client->authenticate;
die $res->error_code if $res->has_error;
die $res->error_code if $res->is_error;
my $auth_token = $res->auth_token;
=head1 AUTHOR
Expand Down

0 comments on commit e994587

Please sign in to comment.