Skip to content

Commit

Permalink
Typos (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwinton-go authored May 31, 2023
1 parent dd56198 commit 7ff85a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flask_jwt_extended/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,13 @@ def create_access_token(
Optional. A hash of claims to include in the access token. These claims are
merged into the default claims (exp, iat, etc) and claims returned from the
:meth:`~flask_jwt_extended.JWTManager.additional_claims_loader` callback.
On conflict, these claims take presidence.
On conflict, these claims take precedence.
:param headers:
Optional. A hash of headers to include in the access token. These headers
are merged into the default headers (alg, typ) and headers returned from
the :meth:`~flask_jwt_extended.JWTManager.additional_headers_loader`
callback. On conflict, these headers take presidence.
callback. On conflict, these headers take precedence.
:return:
An encoded access token
Expand Down Expand Up @@ -206,13 +206,13 @@ def create_refresh_token(
Optional. A hash of claims to include in the refresh token. These claims are
merged into the default claims (exp, iat, etc) and claims returned from the
:meth:`~flask_jwt_extended.JWTManager.additional_claims_loader` callback.
On conflict, these claims take presidence.
On conflict, these claims take precedence.
:param headers:
Optional. A hash of headers to include in the refresh token. These headers
are merged into the default headers (alg, typ) and headers returned from the
:meth:`~flask_jwt_extended.JWTManager.additional_headers_loader` callback.
On conflict, these headers take presidence.
On conflict, these headers take precedence.
:return:
An encoded refresh token
Expand Down

0 comments on commit 7ff85a7

Please sign in to comment.