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

Miss Islington (bot) webhook-mailer at python.org
Sat May 2 20:05:56 EDT 2020


https://github.com/python/cpython/commit/108e45524d5b2d8aa0d7feb1e593ea061fb36ba4
commit: 108e45524d5b2d8aa0d7feb1e593ea061fb36ba4
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-02T17:05:49-07:00
summary:

Fix missing space in docs(GH-19866) (GH-19872)

files:
M Doc/library/random.rst

diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index c01b2294b0436..2149e800e1657 100644
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -102,7 +102,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