diff options
author | mattip <matti.picus@gmail.com> | 2019-10-15 00:54:28 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-15 00:54:28 +0300 |
commit | fbf89d812141c3f65447fb5ee48b95e274881cec (patch) | |
tree | 02b36e9928f88f5e14e026dc7913fe55d9aa6258 /numpy/random | |
parent | 185efe1bb746ad5b6ac23d106df12ad35a207d49 (diff) | |
download | numpy-fbf89d812141c3f65447fb5ee48b95e274881cec.tar.gz |
DOC: typos from review
Diffstat (limited to 'numpy/random')
-rw-r--r-- | numpy/random/_bit_generator.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_bit_generator.pyx b/numpy/random/_bit_generator.pyx index 471adcecd..c9738baa6 100644 --- a/numpy/random/_bit_generator.pyx +++ b/numpy/random/_bit_generator.pyx @@ -487,7 +487,7 @@ cdef class BitGenerator(): 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. - One may also pass in a ~`numpy.random.SeedSequence` instance. + One may also pass in a `SeedSequence` instance. Attributes ---------- |