summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@thomsonreuters.com>2018-12-13 17:16:23 +0100
committerJonathan Huot <jonathan.huot@thomsonreuters.com>2018-12-13 17:16:30 +0100
commitac23d0973b441cd2afdcabe24f474147eada8242 (patch)
treec1fef4dcc64795eca3b906734fb4b396edc6a475
parente69486499cadcda3f4fdf6dfaf8ec72b04f02128 (diff)
downloadoauthlib-ac23d0973b441cd2afdcabe24f474147eada8242.tar.gz
Fixed typo
-rw-r--r--oauthlib/oauth2/rfc6749/endpoints/metadata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/oauth2/rfc6749/endpoints/metadata.py b/oauthlib/oauth2/rfc6749/endpoints/metadata.py
index c2d5918..45cf110 100644
--- a/oauthlib/oauth2/rfc6749/endpoints/metadata.py
+++ b/oauthlib/oauth2/rfc6749/endpoints/metadata.py
@@ -108,7 +108,7 @@ class MetadataEndpoint(BaseEndpoint):
claims.setdefault("response_modes_supported", ["query", "fragment"])
# The OAuth2.0 Implicit flow is defined as a "grant type" but it is not
- # using the "token" endpoint, at such, we have to add it explicitly to
+ # using the "token" endpoint, as such, we have to add it explicitly to
# the list of "grant_types_supported" when enabled.
if "token" in claims["response_types_supported"]:
self._grant_types.append("implicit")