From 8dca5b261ce82871eee237d03ac1bfaaa405f3a7 Mon Sep 17 00:00:00 2001 From: Satoki <54702093+satoki@users.noreply.github.com> Date: Thu, 22 Feb 2024 22:43:30 +0900 Subject: [PATCH] Fix typo --- ptrlib/crypto/hashing/sha256.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)