diff options
author | Mathieu Dupuy <deronnax@users.noreply.github.com> | 2020-05-02 23:50:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-02 23:50:47 (GMT) |
commit | 8aab84312e6062cda44cc67c2b7c0c0f70119c67 (patch) | |
tree | fb32061e407c789d7b8c30d0d327d564eb4cb731 | |
parent | 190fac99c58232f3e0b34891872b91e50ea2f057 (diff) | |
download | cpython-8aab84312e6062cda44cc67c2b7c0c0f70119c67.zip cpython-8aab84312e6062cda44cc67c2b7c0c0f70119c67.tar.gz cpython-8aab84312e6062cda44cc67c2b7c0c0f70119c67.tar.bz2 |
Fix missing space in docs(GH-19866)
-rw-r--r-- | Doc/library/random.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 43a9902..ab4ca4b 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -107,7 +107,7 @@ Bookkeeping functions .. function:: getrandbits(k) Returns a Python integer with *k* random bits. This method is supplied with - the MersenneTwister generator and some other generators may also provide it + the Mersenne Twister generator and some other generators may also provide it as an optional part of the API. When available, :meth:`getrandbits` enables :meth:`randrange` to handle arbitrarily large ranges. |