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 | |
parent | 185efe1bb746ad5b6ac23d106df12ad35a207d49 (diff) | |
download | numpy-fbf89d812141c3f65447fb5ee48b95e274881cec.tar.gz |
DOC: typos from review
-rw-r--r-- | doc/source/reference/random/parallel.rst | 2 | ||||
-rw-r--r-- | numpy/matlib.py | 2 | ||||
-rw-r--r-- | numpy/random/_bit_generator.pyx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/random/parallel.rst b/doc/source/reference/random/parallel.rst index d72d9685e..721584014 100644 --- a/doc/source/reference/random/parallel.rst +++ b/doc/source/reference/random/parallel.rst @@ -116,7 +116,7 @@ Independent Streams `Philox` is a counter-based RNG based which generates values by encrypting an incrementing counter using weak cryptographic primitives. The seed determines the key that is used for the encryption. Unique keys create -unique, independent streams. `hilox` lets you bypass the +unique, independent streams. `Philox` lets you bypass the seeding algorithm to directly set the 128-bit key. Similar, but different, keys will still create independent streams. diff --git a/numpy/matlib.py b/numpy/matlib.py index c495c04ae..b1b155586 100644 --- a/numpy/matlib.py +++ b/numpy/matlib.py @@ -285,7 +285,7 @@ def randn(*args): See Also -------- - rand, random.RandomState.randn + rand, numpy.random.RandomState.randn Notes ----- 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 ---------- |