diff options
-rw-r--r-- | Doc/library/hashlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index 539c51dffd..b73d7536a5 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -113,7 +113,7 @@ A hash object has the following methods: .. method:: hash.digest() Return the digest of the data passed to the :meth:`update` method so far. - This is a bytes array of size :attr:`digest_size` which may contain bytes in + This is a bytes object of size :attr:`digest_size` which may contain bytes in the whole range from 0 to 255. |