diff options
author | Siyabend Ürün <urunsiyabend@gmail.com> | 2022-04-18 06:10:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-18 06:10:32 +0300 |
commit | 8a28774202f9f8ef9b387db91715f4f212c44376 (patch) | |
tree | 37c26df588e1e76fc9be3cf7a9ed907bc2bdd0eb | |
parent | bb811f454ace65dd5ca05316b3b791ce2e213e2a (diff) | |
download | numpy-8a28774202f9f8ef9b387db91715f4f212c44376.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 e9a703e2f..5a8d52e6b 100644 --- a/numpy/random/_mt19937.pyx +++ b/numpy/random/_mt19937.pyx @@ -214,7 +214,7 @@ cdef class MT19937(BitGenerator): Returns a new bit generator with the state jumped - The state of the returned big generator is jumped as-if + The state of the returned bit generator is jumped as-if 2**(128 * jumps) random numbers have been generated. Parameters |