diff options
author | Raphael Kruse <65403623+rk-mlu@users.noreply.github.com> | 2021-11-22 22:58:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 22:58:06 +0100 |
commit | deec99df2376a008c6e650123b42f50801c095ea (patch) | |
tree | e3f5175a8e5c09a76b8f882415de943acf3da22a | |
parent | f8e87f8d5892dd5fe11ddd05470ae83a0104d417 (diff) | |
download | numpy-deec99df2376a008c6e650123b42f50801c095ea.tar.gz |
DOC: Fix a typo in docstring of MT19937
-rw-r--r-- | numpy/random/_mt19937.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_mt19937.pyx b/numpy/random/_mt19937.pyx index 16a377cc6..e9a703e2f 100644 --- a/numpy/random/_mt19937.pyx +++ b/numpy/random/_mt19937.pyx @@ -109,7 +109,7 @@ cdef class MT19937(BitGenerator): **Compatibility Guarantee** - ``MT19937`` makes a guarantee that a fixed seed and will always produce + ``MT19937`` makes a guarantee that a fixed seed will always produce the same random integer stream. References |