[Python-checkins] Fix missing space in docs(GH-19866)

Mathieu Dupuy webhook-mailer at python.org
Sat May 2 19:50:52 EDT 2020


https://github.com/python/cpython/commit/8aab84312e6062cda44cc67c2b7c0c0f70119c67
commit: 8aab84312e6062cda44cc67c2b7c0c0f70119c67
branch: master
author: Mathieu Dupuy <deronnax at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-02T16:50:47-07:00
summary:

Fix missing space in docs(GH-19866)

files:
M Doc/library/random.rst

diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index 43a9902f6c11f..ab4ca4b3f8532 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.
 



More information about the Python-checkins mailing list