aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-19 12:28:15 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-19 21:50:13 -0500
commit6b9ddeb015e3e36ba955c58191820ba1c07bdd76 (patch)
tree0376bfa66ff5fd9609bff7965f12e77adc856656 /docs
parent505491bd64dd410a3ac6c7f01c71e902a3c58917 (diff)
downloadcryptography-6b9ddeb015e3e36ba955c58191820ba1c07bdd76.tar.gz
cryptography-6b9ddeb015e3e36ba955c58191820ba1c07bdd76.tar.bz2
cryptography-6b9ddeb015e3e36ba955c58191820ba1c07bdd76.zip
fix doc formatting and rename update param to "data"
Diffstat (limited to 'docs')
-rw-r--r--docs/primitives/cryptographic-hashes.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/primitives/cryptographic-hashes.rst b/docs/primitives/cryptographic-hashes.rst
index 6e8f601b..397e50d7 100644
--- a/docs/primitives/cryptographic-hashes.rst
+++ b/docs/primitives/cryptographic-hashes.rst
@@ -3,17 +3,16 @@ Message Digests
.. class:: cryptography.primitives.hashes.BaseHash
- Abstract base class that implements a common interface for
- all hash algorithms that follow here
+ Abstract base class that implements a common interface for all hash
+ algorithms that follow here.
- .. method:: update(string)
+ .. method:: update(data)
- :param bytes string: The bytes you wish to hash.
+ :param bytes data The bytes you wish to hash.
.. method:: copy()
- :return: a new instance of this object with a
- copied internal state.
+ :return: a new instance of this object with a copied internal state.
.. method:: digest()