From 5894c25434b9ff278a8f07de2a6c16cf9000e509 Mon Sep 17 00:00:00 2001 From: Carlos Sousa Date: Wed, 8 Jan 2025 18:36:13 -0300 Subject: [PATCH] docs: fix typo in docstring --- auth0/authentication/async_token_verifier.py | 2 +- auth0/authentication/token_verifier.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/auth0/authentication/async_token_verifier.py b/auth0/authentication/async_token_verifier.py index 367e167d..6aff878b 100644 --- a/auth0/authentication/async_token_verifier.py +++ b/auth0/authentication/async_token_verifier.py @@ -176,7 +176,7 @@ async def verify( token (str): The JWT to verify. nonce (str, optional): The nonce value sent during authentication. max_age (int, optional): The max_age value sent during authentication. - organization (str, optional): The expected organization ID (org_id) or orgnization name (org_name) claim value. This should be specified + organization (str, optional): The expected organization ID (org_id) or organization name (org_name) claim value. This should be specified when logging in to an organization. Returns: diff --git a/auth0/authentication/token_verifier.py b/auth0/authentication/token_verifier.py index 10fafeec..2468ec80 100644 --- a/auth0/authentication/token_verifier.py +++ b/auth0/authentication/token_verifier.py @@ -299,7 +299,7 @@ def verify( token (str): The JWT to verify. nonce (str, optional): The nonce value sent during authentication. max_age (int, optional): The max_age value sent during authentication. - organization (str, optional): The expected organization ID (org_id) or orgnization name (org_name) claim value. This should be specified + organization (str, optional): The expected organization ID (org_id) or organization name (org_name) claim value. This should be specified when logging in to an organization. Returns: