diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-08-16 06:07:02 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-16 06:07:02 -0600 |
commit | b6a3e837785eac58a2f68e126f4db7895ca047b3 (patch) | |
tree | 1606744750e198de7d05286c638b38343d2f7a72 /doc/source/user | |
parent | c2ddceb01a28243db684b537e518c022e76e4d7a (diff) | |
parent | 9de446ab53b09fd06d2796b63cec6a8155189fe5 (diff) | |
download | numpy-b6a3e837785eac58a2f68e126f4db7895ca047b3.tar.gz |
Merge pull request #22116 from melissawm/add-sphinx-design
MAINT,DOC: Remove sphinx-panels in favor of sphinx-design
Diffstat (limited to 'doc/source/user')
-rw-r--r-- | doc/source/user/basics.interoperability.rst | 2 | ||||
-rw-r--r-- | doc/source/user/how-to-how-to.rst | 2 | ||||
-rw-r--r-- | doc/source/user/quickstart.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/user/basics.interoperability.rst b/doc/source/user/basics.interoperability.rst index 11fe18a04..3b2f16431 100644 --- a/doc/source/user/basics.interoperability.rst +++ b/doc/source/user/basics.interoperability.rst @@ -44,7 +44,7 @@ objects to be treated as NumPy arrays whenever possible. When NumPy functions encounter a foreign object, they will try (in order): 1. The buffer protocol, described :py:doc:`in the Python C-API documentation - <c-api/buffer>`. + <python:c-api/buffer>`. 2. The ``__array_interface__`` protocol, described :ref:`in this page <arrays.interface>`. A precursor to Python's buffer protocol, it defines a way to access the contents of a NumPy array from other diff --git a/doc/source/user/how-to-how-to.rst b/doc/source/user/how-to-how-to.rst index cdf1ad5c3..b99efdb1f 100644 --- a/doc/source/user/how-to-how-to.rst +++ b/doc/source/user/how-to-how-to.rst @@ -105,7 +105,7 @@ deep dives intended to give understanding rather than immediate assistance, and `References`, which give complete, authoritative data on some concrete part of NumPy (like its API) but aren't obligated to paint a broader picture. -For more on tutorials, see :doc:`content/tutorial-style-guide` +For more on tutorials, see :doc:`numpy-tutorials:content/tutorial-style-guide` ****************************************************************************** Is this page an example of a how-to? diff --git a/doc/source/user/quickstart.rst b/doc/source/user/quickstart.rst index 8e0e3b6ba..d138242d7 100644 --- a/doc/source/user/quickstart.rst +++ b/doc/source/user/quickstart.rst @@ -1485,4 +1485,4 @@ Further reading - `SciPy Tutorial <https://docs.scipy.org/doc/scipy/reference/tutorial/index.html>`__ - `SciPy Lecture Notes <https://scipy-lectures.org>`__ - A `matlab, R, IDL, NumPy/SciPy dictionary <http://mathesaurus.sf.net/>`__ -- :doc:`tutorial-svd <content/tutorial-svd>` +- :doc:`tutorial-svd <numpy-tutorials:content/tutorial-svd>` |