Skip to content

Commit

Permalink
Fix documentation mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
twalcari authored Apr 10, 2024
1 parent 610622e commit c2429c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions authlib/oauth2/rfc9068/introspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class JWTIntrospectionEndpoint(IntrospectionEndpoint):
::
class MyJWTAccessTokenIntrospectionEndpoint(JWTRevocationEndpoint):
class MyJWTAccessTokenIntrospectionEndpoint(JWTIntrospectionEndpoint):
def get_jwks(self):
...
Expand All @@ -32,7 +32,7 @@ def get_username(self, user_id):
issuer="https://authorization-server.example.org",
)
)
authorization_server.register_endpoint(MyRefreshTokenIntrospectionEndpoint)
authorization_server.register_endpoint(MyJWTAccessTokenIntrospectionEndpoint)
'''

Expand Down

0 comments on commit c2429c6

Please sign in to comment.