From dd78bbe57c3379d824992d383a8c96db22c4aee5 Mon Sep 17 00:00:00 2001 From: Jay Turner Date: Sun, 25 Jun 2023 10:59:50 +0100 Subject: [PATCH] Fix typo in docstring (#555) --- authlib/jose/rfc7519/jwt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authlib/jose/rfc7519/jwt.py b/authlib/jose/rfc7519/jwt.py index 58a6f7c4..caed4471 100644 --- a/authlib/jose/rfc7519/jwt.py +++ b/authlib/jose/rfc7519/jwt.py @@ -70,7 +70,7 @@ def encode(self, header, payload, key, check=True): def decode(self, s, key, claims_cls=None, claims_options=None, claims_params=None): - """Decode the JWS with the given key. This is similar with + """Decode the JWT with the given key. This is similar with :meth:`verify`, except that it will raise BadSignatureError when signature doesn't match.