Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ptr-yudai committed Apr 4, 2024
1 parent 160b6f3 commit e34666d
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 e34666d

Please sign in to comment.