diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-12-21 02:22:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-12-21 02:22:47 (GMT) |
commit | bd584d559b226246be35f226c04f4590311031bc (patch) | |
tree | e57e37135255ba4a6ffc260cf22e51d9b9bb4409 /Doc | |
parent | 3d3daf0b7fc5a1064f3eead47e5f62cc317afd6c (diff) | |
download | cpython-bd584d559b226246be35f226c04f4590311031bc.zip cpython-bd584d559b226246be35f226c04f4590311031bc.tar.gz cpython-bd584d559b226246be35f226c04f4590311031bc.tar.bz2 |
fix typo (#16687)
Patch from Jeff Knupp.
Diffstat (limited to 'Doc')
-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 bc8ab2c..19d3e4c 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -45,7 +45,7 @@ concatenation of the data fed to it so far using the :meth:`digest` or .. note:: - Feeding string objects is to :meth:`update` is not supported, as hashes work + Feeding string objects into :meth:`update` is not supported, as hashes work on bytes, not on characters. .. index:: single: OpenSSL; (use in module hashlib) |