]> granicus.if.org Git - python/commitdiff
Fix Issue10793 - hashlib documentation issue on return type of digest
authorSenthil Kumaran <orsenthil@gmail.com>
Thu, 30 Dec 2010 07:07:58 +0000 (07:07 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Thu, 30 Dec 2010 07:07:58 +0000 (07:07 +0000)
Doc/library/hashlib.rst

index fa9582119b10a782a373d5eedecba8ca441539af..6810b4ec4f22adbe9a3cd35dba289da914c35c13 100644 (file)
@@ -135,7 +135,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.