Skip to content

Commit 5dd816c

Browse files
haiyanghevimalloc
authored andcommitted
Corrected typo in docstrings (#213)
1 parent 99dc631 commit 5dd816c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flask_jwt_extended/view_decorators.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

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

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

7979
def verify_jwt_refresh_token_in_request():
8080
"""
81-
Ensure that the requeste has a valid refresh token. Raises an appropiate
81+
Ensure that the requester has a valid refresh token. Raises an appropiate
8282
exception if there is no token or the token is invalid.
8383
"""
8484
if request.method not in config.exempt_methods:

0 commit comments

Comments
 (0)