summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-10-17 18:06:01 +0300
committermattip <matti.picus@gmail.com>2019-10-17 18:06:01 +0300
commit1531642c40f5e0536837833fb23e82e39aba1fa0 (patch)
treebaac5f3857c3fe2488a8334368f0dbb44e31e124 /numpy/random
parent09708c976876ee6fa58c615df277b47264bcdc26 (diff)
downloadnumpy-1531642c40f5e0536837833fb23e82e39aba1fa0.tar.gz
DOC: fix from review
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/_bit_generator.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_bit_generator.pyx b/numpy/random/_bit_generator.pyx
index c9738baa6..21d21e6bb 100644
--- a/numpy/random/_bit_generator.pyx
+++ b/numpy/random/_bit_generator.pyx
@@ -486,7 +486,7 @@ cdef class BitGenerator():
A seed to initialize the `BitGenerator`. If None, then fresh,
unpredictable entropy will be pulled from the OS. If an ``int`` or
``array_like[ints]`` is passed, then it will be passed to
- ~`numpy.randomSeedSequence` to derive the initial `BitGenerator` state.
+ ~`numpy.random.SeedSequence` to derive the initial `BitGenerator` state.
One may also pass in a `SeedSequence` instance.
Attributes