summaryrefslogtreecommitdiffstats
path: root/Doc/library/hashlib.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-09-28 20:40:57 (GMT)
committerGitHub <noreply@github.com>2021-09-28 20:40:57 (GMT)
commit4f05f15d7b25ef8b690cb94fdc4c8cb5521a4e27 (patch)
treeda653177934ecf5a2dc4a6c5efa3e25452ead2b7 /Doc/library/hashlib.rst
parent0c50b8c0b8274d54d6b71ed7bd21057d3642f138 (diff)
downloadcpython-4f05f15d7b25ef8b690cb94fdc4c8cb5521a4e27.zip
cpython-4f05f15d7b25ef8b690cb94fdc4c8cb5521a4e27.tar.gz
cpython-4f05f15d7b25ef8b690cb94fdc4c8cb5521a4e27.tar.bz2
[docs] Improve the markup of powers (GH-28598)
Diffstat (limited to 'Doc/library/hashlib.rst')
-rw-r--r--Doc/library/hashlib.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index 37addee..77b35fd 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -376,10 +376,10 @@ Constructor functions also accept the following tree hashing parameters:
* *depth*: maximal depth of tree (1 to 255, 255 if unlimited, 1 in
sequential mode).
-* *leaf_size*: maximal byte length of leaf (0 to 2**32-1, 0 if unlimited or in
+* *leaf_size*: maximal byte length of leaf (0 to ``2**32-1``, 0 if unlimited or in
sequential mode).
-* *node_offset*: node offset (0 to 2**64-1 for BLAKE2b, 0 to 2**48-1 for
+* *node_offset*: node offset (0 to ``2**64-1`` for BLAKE2b, 0 to ``2**48-1`` for
BLAKE2s, 0 for the first, leftmost, leaf, or in sequential mode).
* *node_depth*: node depth (0 to 255, 0 for leaves, or in sequential mode).