Skip to content

Commit

Permalink
Merge pull request #36 from dsteinbrunner/patch-1
Browse files Browse the repository at this point in the history
typo fixes
  • Loading branch information
semifor committed Oct 30, 2013
2 parents 8de7ea4 + 95f1d22 commit d0c84c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Net/Twitter/Core.pm
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ sub _filter_since {
$visitor->visit($obj);
}

# check an arrayref to see if it contains satuses
# check an arrayref to see if it contains statuses
sub _contains_statuses {
my ($self, $arrayref) = @_;

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Twitter/Error.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sub error {
# Don't walk on $@
local $@;

# Twitter does not return a consintent error structure, so we have to
# Twitter does not return a consistent error structure, so we have to
# try each known (or guessed) variant to find a suitable message...
my $error = $self->has_twitter_error && do {
my $e = $self->twitter_error;
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/Twitter/Role/API/RESTv1_1.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Net::Twitter::API;
use DateTime::Format::Strptime;
use URI;

# API v1.1 incorporoates the Search and Upload APIs
# API v1.1 incorporates the Search and Upload APIs
excludes map "Net::Twitter::Role::$_", qw/API::Search API::Upload Net::Twitter::Role::RateLimit/;

has apiurl => ( isa => 'Str', is => 'ro', default => 'http://api.twitter.com/1.1' );
Expand Down Expand Up @@ -1671,7 +1671,7 @@ EOT
returns => 'RateLimitStatus',
);

# translate resources arrayref to to a comma separated string
# translate resources arrayref to a comma separated string
around rate_limit_status => sub {
my $orig = shift;
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Twitter/Role/OAuth.pm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sub authorized {
return defined $self->has_access_token && $self->has_access_token_secret;
}

# get the athorization or authentication url
# get the authorization or authentication url
sub _get_auth_url {
my ($self, $which_url, %params ) = @_;

Expand Down

0 comments on commit d0c84c6

Please sign in to comment.