diff options
author | Robert Kern <robert.kern@gmail.com> | 2023-04-14 01:07:55 -0400 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2023-04-14 01:18:39 -0400 |
commit | 48009bf9d815c748b48998631f38f88d95026f01 (patch) | |
tree | 1029365d4ef12adcd7d4815d8f550d158c66df9a /doc/source | |
parent | 188b8a08f01a8b154fe8554f31406ce7650547c0 (diff) | |
download | numpy-48009bf9d815c748b48998631f38f88d95026f01.tar.gz |
DOC: fix references
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/reference/random/bit_generators/index.rst | 2 | ||||
-rw-r--r-- | doc/source/reference/random/index.rst | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/reference/random/bit_generators/index.rst b/doc/source/reference/random/bit_generators/index.rst index 098523c3c..e523b4339 100644 --- a/doc/source/reference/random/bit_generators/index.rst +++ b/doc/source/reference/random/bit_generators/index.rst @@ -1,6 +1,6 @@ .. currentmodule:: numpy.random -.. _random-bit-generators +.. _random-bit-generators: Bit Generators ============== diff --git a/doc/source/reference/random/index.rst b/doc/source/reference/random/index.rst index 666a2d7d8..ad9ff1c66 100644 --- a/doc/source/reference/random/index.rst +++ b/doc/source/reference/random/index.rst @@ -109,7 +109,7 @@ implementation details of each `BitGenerator` algorithm, each of which can require different amounts of bits for its state. Importantly, it lets you use arbitrary-sized integers and arbitrary sequences of such integers to mix together into the PRNG state. This is a useful primitive for constructing -a `flexible pattern for parallel PRNG streams <seedsequence-spawn>`. +a `flexible pattern for parallel PRNG streams <seedsequence-spawn>`_. For backward compatibility, we still maintain the legacy `RandomState` class. It continues to use the `~MT19937` algorithm by default, and old seeds continue @@ -206,7 +206,7 @@ different. See :ref:`new-or-different` for a complete list of improvements and differences from the traditional ``Randomstate``. -.. _random-compatibility:: +.. _random-compatibility: Compatibility Policy -------------------- @@ -280,7 +280,7 @@ the docstrings of each `BitGenerator` class for their individual compatibility guarantees. The legacy `RandomState` and the `associated convenience functions -<random-functions-in-numpy-random>` have a stricter version-to-version +<random-functions-in-numpy-random>`_ have a stricter version-to-version compatibility guarantee. For reasons outlined in :ref:`NEP 19 <NEP19>`, we had made stronger promises about their version-to-version stability early in Numpy's development. There are still some limited use cases for this kind of |