Skip to content

Commit

Permalink
Merge pull request #27 from satoki/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
ptr-yudai authored Feb 22, 2024
2 parents a953611 + 8dca5b2 commit 6987160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ptrlib/crypto/hashing/sha256.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6987160

Please sign in to comment.