Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions flask_jwt_extended/view_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

def verify_jwt_in_request():
"""
Ensure that the requeste has a valid access token. This does not check the
Ensure that the requester has a valid access token. This does not check the
freshness of the access token. Raises an appropiate exception there is
no token or if the token is invalid.
"""
Expand Down Expand Up @@ -57,7 +57,7 @@ def verify_jwt_in_request_optional():

def verify_fresh_jwt_in_request():
"""
Ensure that the requeste has a valid and fresh access token. Raises an
Ensure that the requester has a valid and fresh access token. Raises an
appropiate exception if there is no token, the token is invalid, or the
token is not marked as fresh.
"""
Expand All @@ -78,7 +78,7 @@ def verify_fresh_jwt_in_request():

def verify_jwt_refresh_token_in_request():
"""
Ensure that the requeste has a valid refresh token. Raises an appropiate
Ensure that the requester has a valid refresh token. Raises an appropiate
exception if there is no token or the token is invalid.
"""
if request.method not in config.exempt_methods:
Expand Down