diff options
| author | david-cortes <david.cortes.rivera@gmail.com> | 2021-07-22 00:13:08 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-21 18:13:08 -0300 |
| commit | 2e5e6f6949af92b3f7abd99e558f1f6ae5be2185 (patch) | |
| tree | cd77c74c99a201d4c379de9bff6064c95fa9a5d3 /numpy/random | |
| parent | f69c2fae9cc592fe42355b1533bd1a7e32216ace (diff) | |
| download | numpy-2e5e6f6949af92b3f7abd99e558f1f6ae5be2185.tar.gz | |
DOC: Fix typo in PCG64 (#19538)
* DOC: Fix typo in PCG64
* DOC: fix typo in PCG64DXSM
Diffstat (limited to 'numpy/random')
| -rw-r--r-- | numpy/random/_pcg64.pyx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/_pcg64.pyx b/numpy/random/_pcg64.pyx index 8a00dc265..c0a10a812 100644 --- a/numpy/random/_pcg64.pyx +++ b/numpy/random/_pcg64.pyx @@ -102,7 +102,7 @@ cdef class PCG64(BitGenerator): **Compatibility Guarantee** - ``PCG64`` makes a guarantee that a fixed seed and will always produce + ``PCG64`` makes a guarantee that a fixed seed will always produce the same random integer stream. References @@ -338,7 +338,7 @@ cdef class PCG64DXSM(BitGenerator): **Compatibility Guarantee** - ``PCG64DXSM`` makes a guarantee that a fixed seed and will always produce + ``PCG64DXSM`` makes a guarantee that a fixed seed will always produce the same random integer stream. References |
