summaryrefslogtreecommitdiff
path: root/Doc/library/hmac.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-06 09:48:26 +0200
committerGeorg Brandl <georg@python.org>2013-10-06 09:48:26 +0200
commit05c8baa40f8d9df01470e528dc059f7a64ce2686 (patch)
tree97d772151dd291341880d6c74307fa2a544d8b19 /Doc/library/hmac.rst
parentd39c3a4d452b6cdb31ff7788524c5e0954698339 (diff)
downloadcpython-git-05c8baa40f8d9df01470e528dc059f7a64ce2686.tar.gz
Fix markup to not add parens to the "hashlib.md5" constructor when the object is meant, not the call.
Diffstat (limited to 'Doc/library/hmac.rst')
-rw-r--r--Doc/library/hmac.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hmac.rst b/Doc/library/hmac.rst
index e962ff0de7..f88a03e0f9 100644
--- a/Doc/library/hmac.rst
+++ b/Doc/library/hmac.rst
@@ -20,7 +20,7 @@ This module implements the HMAC algorithm as described by :rfc:`2104`.
Return a new hmac object. If *msg* is present, the method call ``update(msg)``
is made. *digestmod* is the digest constructor or module for the HMAC object to
- use. It defaults to the :func:`hashlib.md5` constructor.
+ use. It defaults to the :data:`hashlib.md5` constructor.
An HMAC object has the following methods: