[Python-checkins] Doc: Fix s/pseudo random/pseudo-random/ (GH-18289)

Julien Palard webhook-mailer at python.org
Fri Jan 31 04:50:24 EST 2020


https://github.com/python/cpython/commit/58a4054760bffbb20aff90290dd0f3554f7bea42
commit: 58a4054760bffbb20aff90290dd0f3554f7bea42
branch: master
author: Julien Palard <julien at palard.fr>
committer: GitHub <noreply at github.com>
date: 2020-01-31T10:50:14+01:00
summary:

Doc: Fix s/pseudo random/pseudo-random/ (GH-18289)

files:
M Doc/library/random.rst

diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index 933da3f8fcf65..1eb39bbda42e8 100644
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -343,8 +343,8 @@ Alternative Generator
 Notes on Reproducibility
 ------------------------
 
-Sometimes it is useful to be able to reproduce the sequences given by a pseudo
-random number generator.  By re-using a seed value, the same sequence should be
+Sometimes it is useful to be able to reproduce the sequences given by a
+pseudo-random number generator.  By re-using a seed value, the same sequence should be
 reproducible from run to run as long as multiple threads are not running.
 
 Most of the random module's algorithms and seeding functions are subject to



More information about the Python-checkins mailing list