Skip to content

Commit

Permalink
Recreated the identica -> mentions/replies fix; minor POD fixes.
Browse files Browse the repository at this point in the history
I'm not sure how I lost the identica fix in the first place. :-/
  • Loading branch information
semifor committed May 28, 2009
1 parent d4ebeac commit 3cf156b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Net/Twitter/Role/API/REST.pm
Expand Up @@ -84,7 +84,7 @@ Returns the 20 most recent mentions (statuses containing @username) for the
authenticating user.
aliases => [qw/replies/],
path => 'statuses/mentions',
path => 'statuses/replies',
method => 'GET',
params => [qw/since_id max_id count page/],
required => [],
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Twitter/Role/OAuth.pm
Expand Up @@ -112,7 +112,7 @@ Here's how to authorize users as a desktop app mode:
my($access_token, $access_token_secret) = restore_tokens();
if ($access_token && $access_token_secret) {
$nt->access_token($access_token);
$nt->>access_token_secret($access_token_secret);
$nt->access_token_secret($access_token_secret);
}
unless ( $nt->is_authorized ) {
Expand Down
2 changes: 1 addition & 1 deletion src/net-twitter-pod.tt2
Expand Up @@ -111,7 +111,7 @@ Some examples of using the C<traits> parameter in C<new>:
$nt = Net::Twitter->new(traits => ['Legacy']);

# currently, these 2 calls to new are equivalent:
$nt = Net::Twitter-new();
$nt = Net::Twitter->new();
$nt = Net::Twitter->new(traits => ['Legacy']);

=item legacy
Expand Down

0 comments on commit 3cf156b

Please sign in to comment.