From: Julien Palard Date: Fri, 31 Jan 2020 09:50:14 +0000 (+0100) Subject: Doc: Fix s/pseudo random/pseudo-random/ (GH-18289) X-Git-Tag: v3.9.0a4~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58a4054760bffbb20aff90290dd0f3554f7bea42;p=thirdparty%2FPython%2Fcpython.git Doc: Fix s/pseudo random/pseudo-random/ (GH-18289) --- diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 933da3f8fcf6..1eb39bbda42e 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