summaryrefslogtreecommitdiff
path: root/numpy/random/_mt19937.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/random/_mt19937.pyx')
-rw-r--r--numpy/random/_mt19937.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/_mt19937.pyx b/numpy/random/_mt19937.pyx
index 400584ce1..8b991254a 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
@@ -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