summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@thomsonreuters.com>2019-04-29 10:12:10 +0200
committerJonathan Huot <jonathan.huot@thomsonreuters.com>2019-04-29 10:12:10 +0200
commit247c89e13bdd017b99f22b154e521084df53d2f0 (patch)
treee643419fd866b961caacf898f13463488fc48a4c
parent5405ca4cae31146ce2d2c6860b0c46dbbbe879c9 (diff)
downloadoauthlib-247c89e13bdd017b99f22b154e521084df53d2f0.tar.gz
Fix typo gave/have
-rw-r--r--oauthlib/openid/connect/core/request_validator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/oauthlib/openid/connect/core/request_validator.py b/oauthlib/openid/connect/core/request_validator.py
index eebab55..344fd7d 100644
--- a/oauthlib/openid/connect/core/request_validator.py
+++ b/oauthlib/openid/connect/core/request_validator.py
@@ -24,7 +24,7 @@ class RequestValidator(OAuth2RequestValidator):
id_token in token response only based on authorization code scopes.
Only code param should be sufficient to retrieve grant code from
- any storage you are using, `client_id` and `redirect_uri` can gave a
+ any storage you are using, `client_id` and `redirect_uri` can have a
blank value `""` don't forget to check it before using those values
in a select query if a database is used.
@@ -49,7 +49,7 @@ class RequestValidator(OAuth2RequestValidator):
case-sensitive string.
Only code param should be sufficient to retrieve grant code from
- any storage you are using, `client_id` and `redirect_uri` can gave a
+ any storage you are using, `client_id` and `redirect_uri` can have a
blank value `""` don't forget to check it before using those values
in a select query if a database is used.