Skip to content

Commit 381a15a

Browse files
authored
docs: fix simple typo, iinstance -> isinstance (#774)
There is a small typo in jwt/algorithms.py. Should read `isinstance` rather than `iinstance`.
1 parent a863a73 commit 381a15a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jwt/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ def sign(self, msg, key):
609609
Sign a message ``msg`` using the EdDSA private key ``key``
610610
:param str|bytes msg: Message to sign
611611
:param Ed25519PrivateKey}Ed448PrivateKey key: A :class:`.Ed25519PrivateKey`
612-
or :class:`.Ed448PrivateKey` iinstance
612+
or :class:`.Ed448PrivateKey` isinstance
613613
:return bytes signature: The signature, as bytes
614614
"""
615615
msg = bytes(msg, "utf-8") if type(msg) is not bytes else msg

0 commit comments

Comments
 (0)