diff options
author | ndunnewind <43117768+ndunnewind@users.noreply.github.com> | 2020-04-29 23:52:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 17:52:16 -0400 |
commit | 92bda60074d0afcc3d29a0131037f11b350a99d7 (patch) | |
tree | 364a8fd5ba76004a35e62df689bccd84bbc430cb | |
parent | 4753652c605833e2398d7e46b754a71729a54713 (diff) | |
download | numpy-92bda60074d0afcc3d29a0131037f11b350a99d7.tar.gz |
MAINT: Fix random.PCG64 signature in its docstring (#16113)
-rw-r--r-- | numpy/random/_pcg64.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_pcg64.pyx b/numpy/random/_pcg64.pyx index 05d27db5c..605aae4bc 100644 --- a/numpy/random/_pcg64.pyx +++ b/numpy/random/_pcg64.pyx @@ -38,7 +38,7 @@ cdef double pcg64_double(void* st) nogil: cdef class PCG64(BitGenerator): """ - PCG64(seed_seq=None) + PCG64(seed=None) BitGenerator for the PCG-64 pseudo-random number generator. |