diff options
author | Julien Palard <julien@palard.fr> | 2020-01-31 09:50:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-31 09:50:14 (GMT) |
commit | 58a4054760bffbb20aff90290dd0f3554f7bea42 (patch) | |
tree | 18a0c75a113572a0fac32abe176993d04c7563ae | |
parent | bfdeaa37b3df7466624c17f9450d2bd1c3d95edf (diff) | |
download | cpython-58a4054760bffbb20aff90290dd0f3554f7bea42.zip cpython-58a4054760bffbb20aff90290dd0f3554f7bea42.tar.gz cpython-58a4054760bffbb20aff90290dd0f3554f7bea42.tar.bz2 |
Doc: Fix s/pseudo random/pseudo-random/ (GH-18289)
-rw-r--r-- | Doc/library/random.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 933da3f..1eb39bb 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 |