@@ -20,7 +20,7 @@ General Options:
2020 ``["headers", "cookies"] ``. The order of the list sets the precedence of
2121 where JWTs will be looked for.
2222
23- This can be overriden on a per-route basis by using the ``locations ``
23+ This can be overridden on a per-route basis by using the ``locations ``
2424 argument in :func: `flask_jwt_extended.jwt_required `.
2525
2626 Default: ``"headers" ``
@@ -61,15 +61,15 @@ General Options:
6161.. py :data :: JWT_ALGORITHM
6262
6363 Which algorithm to sign the JWT with. See `PyJWT <https://pyjwt.readthedocs.io/en/latest/algorithms.html >`_
64- for the available algorightms .
64+ for the available algorithms .
6565
6666 Default: ``"HS256" ``
6767
6868
6969.. py :data :: JWT_DECODE_ALGORITHMS
7070
7171 Which algorithms to use when decoding a JWT. See `PyJWT <https://pyjwt.readthedocs.io/en/latest/algorithms.html >`_
72- for the available algorightms .
72+ for the available algorithms .
7373
7474 By default this will always be the same algorithm that is defined in ``JWT_ALGORITHM ``.
7575
@@ -79,7 +79,7 @@ General Options:
7979.. py :data :: JWT_SECRET_KEY
8080
8181 The secret key used to encode and decode JWTs when using a symmetric signing
82- algorightm (such as ``HS* ``). It should be a long random string of bytes,
82+ algorithm (such as ``HS* ``). It should be a long random string of bytes,
8383 although unicode is accepted too. For example, copy the output of this to
8484 your config.
8585
@@ -99,7 +99,7 @@ General Options:
9999.. py :data :: JWT_PRIVATE_KEY
100100
101101 The secret key used to encode JWTs when using an asymmetric signing
102- algorightm (such as ``RS* `` or ``ES* ``). The key must be in PEM format.
102+ algorithm (such as ``RS* `` or ``ES* ``). The key must be in PEM format.
103103
104104 **Do not reveal the secret key when posting questions or committing code. **
105105
@@ -109,7 +109,7 @@ General Options:
109109.. py :data :: JWT_PUBLIC_KEY
110110
111111 The secret key used to decode JWTs when using an asymmetric signing
112- algorightm (such as ``RS* `` or ``ES* ``). The key must be in PEM format.
112+ algorithm (such as ``RS* `` or ``ES* ``). The key must be in PEM format.
113113
114114 Default: ``None ``
115115
0 commit comments