summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHsiaoming Yang <me@lepture.com>2013-05-31 17:11:00 +0800
committerHsiaoming Yang <me@lepture.com>2013-05-31 17:11:00 +0800
commit529fe69f995c8e5ba98e89dce624f2c1def9737a (patch)
tree2ebd9daba5ad94d94a48cbddda0b772594843442
parentba39888bf4d0224bc0bb9281f037402afbc46e12 (diff)
downloadoauthlib-529fe69f995c8e5ba98e89dce624f2c1def9737a.tar.gz
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.