From 0e963d8e55cabbd9b50fe2d6ec6659f01c1a2e00 Mon Sep 17 00:00:00 2001 From: jonathan vanasco Date: Tue, 11 Sep 2018 14:34:21 -0400 Subject: cleanup on docs fixes --- oauthlib/oauth2/rfc6749/grant_types/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'oauthlib/oauth2/rfc6749/grant_types/base.py') diff --git a/oauthlib/oauth2/rfc6749/grant_types/base.py b/oauthlib/oauth2/rfc6749/grant_types/base.py index 4d9381c..43f9db4 100644 --- a/oauthlib/oauth2/rfc6749/grant_types/base.py +++ b/oauthlib/oauth2/rfc6749/grant_types/base.py @@ -120,7 +120,7 @@ class GrantTypeBase(object): """ :param request: OAuthlib request. :type request: oauthlib.common.Request - :param token_handler: A token handler instace, for example of type + :param token_handler: A token handler instance, for example of type oauthlib.oauth2.BearerToken. """ raise NotImplementedError('Subclasses must implement this method.') @@ -129,7 +129,7 @@ class GrantTypeBase(object): """ :param request: OAuthlib request. :type request: oauthlib.common.Request - :param token_handler: A token handler instace, for example of type + :param token_handler: A token handler instance, for example of type oauthlib.oauth2.BearerToken. """ raise NotImplementedError('Subclasses must implement this method.') @@ -137,7 +137,7 @@ class GrantTypeBase(object): def add_token(self, token, token_handler, request): """ :param token: - :param token_handler: A token handler instace, for example of type + :param token_handler: A token handler instance, for example of type oauthlib.oauth2.BearerToken. :param request: OAuthlib request. :type request: oauthlib.common.Request -- cgit v1.2.1