Skip to content

Commit

Permalink
Fixed typos in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhepper committed Mar 19, 2012
1 parent 77173a7 commit f2f8eba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions social_auth/backends/twitter.py
Expand Up @@ -3,7 +3,7 @@
This adds support for Twitter OAuth service. An application must
be registered first on twitter and the settings TWITTER_CONSUMER_KEY
and TWITTER_CONSUMER_SECRET must be defined with they corresponding
and TWITTER_CONSUMER_SECRET must be defined with the corresponding
values.
User screen name is used to generate username.
Expand Down Expand Up @@ -48,8 +48,8 @@ def get_user_details(self, response):
@classmethod
def tokens(cls, instance):
"""Return the tokens needed to authenticate the access to any API the
service might provide. Twitter uses a pair of OAuthToken consisting on
a oauth_token and oauth_token_secret.
service might provide. Twitter uses a pair of OAuthToken consisting of
an oauth_token and oauth_token_secret.
instance must be a UserSocialAuth instance.
"""
Expand Down Expand Up @@ -80,7 +80,7 @@ def user_data(self, access_token):
return None

def auth_complete(self, *args, **kwargs):
"""Completes loging process, must return user instance"""
"""Completes login process, must return user instance"""
if 'denied' in self.data:
raise AuthCanceled(self)
else:
Expand Down

0 comments on commit f2f8eba

Please sign in to comment.