diff options
author | abstractee <48130041+abstractee@users.noreply.github.com> | 2024-09-03 00:20:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 00:20:40 (GMT) |
commit | 1f4a49ea53516e7ff177beedc09a1e4439b3be1f (patch) | |
tree | c6aebbf8b1875231a21c667e16d3168111e672bd /Lib/hashlib.py | |
parent | 33b790978d8b817a66a4a117a8c38a857b6103f0 (diff) | |
download | cpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.zip cpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.tar.gz cpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.tar.bz2 |
Fix typos in warnings, docstrings, comments and text files (#123597)
Diffstat (limited to 'Lib/hashlib.py')
-rw-r--r-- | Lib/hashlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/hashlib.py b/Lib/hashlib.py index da05770..1b2c30c 100644 --- a/Lib/hashlib.py +++ b/Lib/hashlib.py @@ -33,7 +33,7 @@ Hash objects have these methods: - hexdigest(): Like digest() except the digest is returned as a string of double length, containing only hexadecimal digits. - copy(): Return a copy (clone) of the hash object. This can be used to - efficiently compute the digests of datas that share a common + efficiently compute the digests of data that share a common initial substring. For example, to obtain the digest of the byte string 'Nobody inspects the |