summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIb Lundgren <ib.lundgren@gmail.com>2013-05-31 02:28:53 -0700
committerIb Lundgren <ib.lundgren@gmail.com>2013-05-31 02:28:53 -0700
commit15a5f0aa12338078157b719b67a5555f22080d5b (patch)
treedff4199fc0e4d81aec12032b0bed6e36d1b2ab79
parent229b2f78b545b8fb8fb3d879c278d8cecc91c7a4 (diff)
parent529fe69f995c8e5ba98e89dce624f2c1def9737a (diff)
downloadoauthlib-15a5f0aa12338078157b719b67a5555f22080d5b.tar.gz
Merge pull request #171 from lepture/doc-mistakes
docstring fix
-rw-r--r--oauthlib/oauth2/rfc6749/request_validator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/oauth2/rfc6749/request_validator.py b/oauthlib/oauth2/rfc6749/request_validator.py
index 25edcc8..ff449f0 100644
--- a/oauthlib/oauth2/rfc6749/request_validator.py
+++ b/oauthlib/oauth2/rfc6749/request_validator.py
@@ -337,7 +337,7 @@ class RequestValidator(object):
raise NotImplementedError('Subclasses must implement this method.')
def validate_response_type(self, client_id, response_type, client, request, *args, **kwargs):
- """Ensure client is authorized to use the grant_type requested.
+ """Ensure client is authorized to use the response_type requested.
:param client_id: Unicode client identifier
:param response_type: Unicode response type, i.e. code, token.