diff options
author | Christina Hedges <christina.l.hedges@nasa.gov> | 2021-04-22 09:18:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 09:18:19 -0700 |
commit | 67cdf3d1de1947e3a51e2c5a56e5a898d713e588 (patch) | |
tree | 1663023fd4dc08b1c986b7348d0a505251da50bc /doc | |
parent | 341316d5158477b06f877db60049b0995ab78128 (diff) | |
download | numpy-67cdf3d1de1947e3a51e2c5a56e5a898d713e588.tar.gz |
Fix typo in random docs
DOC
Fix typo in random docs `Randomstate` -> `RandomState`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/reference/random/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/random/index.rst b/doc/source/reference/random/index.rst index 69d597874..fc7743c64 100644 --- a/doc/source/reference/random/index.rst +++ b/doc/source/reference/random/index.rst @@ -25,7 +25,7 @@ nep-0019-rng-policy.html>`_ for context on the updated random Numpy number routines. The legacy `RandomState` random number routines are still available, but limited to a single BitGenerator. See :ref:`new-or-different` for a complete list of improvements and differences from the legacy -``Randomstate``. +``RandomState``. For convenience and backward compatibility, a single `RandomState` instance's methods are imported into the numpy.random namespace, see |