diff --git a/ptrlib/crypto/hashing/sha256.py b/ptrlib/crypto/hashing/sha256.py index c969c65..0584b55 100644 --- a/ptrlib/crypto/hashing/sha256.py +++ b/ptrlib/crypto/hashing/sha256.py @@ -67,7 +67,7 @@ def update(self, message: Union[str, bytes]): This method updates the current SHA-256 sum. If you call update(a) and update(b) in this order, - yuo will get the SHA-256 sum of a+b. + you will get the SHA-256 sum of a+b. """ if isinstance(message, str): message = str2bytes(message)