From 529fe69f995c8e5ba98e89dce624f2c1def9737a Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Fri, 31 May 2013 17:11:00 +0800 Subject: [PATCH] docstring fix --- oauthlib/oauth2/rfc6749/request_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauthlib/oauth2/rfc6749/request_validator.py b/oauthlib/oauth2/rfc6749/request_validator.py index 25edcc8b..ff449f01 100644 --- a/oauthlib/oauth2/rfc6749/request_validator.py +++ b/oauthlib/oauth2/rfc6749/request_validator.py @@ -337,7 +337,7 @@ def validate_refresh_token(self, refresh_token, client, request, *args, **kwargs 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.