summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiyabend Ürün <urunsiyabend@gmail.com>2022-04-18 06:10:32 +0300
committerGitHub <noreply@github.com>2022-04-18 06:10:32 +0300
commit8a28774202f9f8ef9b387db91715f4f212c44376 (patch)
tree37c26df588e1e76fc9be3cf7a9ed907bc2bdd0eb
parentbb811f454ace65dd5ca05316b3b791ce2e213e2a (diff)
downloadnumpy-8a28774202f9f8ef9b387db91715f4f212c44376.tar.gz
DOC: Fix a typo in docstring of MT19937
-rw-r--r--numpy/random/_mt19937.pyx2
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