diff options
| author | Bram <github@cbbg.nl> | 2022-06-29 13:18:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-29 14:18:06 +0300 |
| commit | 4d057e633408c04c15292ccc9cd11d96e33a90f5 (patch) | |
| tree | 8bc09f53063439f2fd1fe14b6c4f60f0c263331d | |
| parent | b9786ab5495ca670807d579bb6553d124273703d (diff) | |
| download | numpy-4d057e633408c04c15292ccc9cd11d96e33a90f5.tar.gz | |
DOC: Fixed minor typo in BitGenerator reference (#21876)
Co-authored-by: Bram <b.t.ton@saxion.nl>
| -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 2c50dbf70..62eaab6c0 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.random.SeedSequence` to derive the initial `BitGenerator` state. + `~numpy.random.SeedSequence` to derive the initial `BitGenerator` state. One may also pass in a `SeedSequence` instance. Attributes |
