summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2022-03-25 12:23:21 -0700
committerGitHub <noreply@github.com>2022-03-25 12:23:21 -0700
commita9ce90284fcfdfb654954840ccc449c711bc5b2f (patch)
tree5f12557bcc92003ffb235e54a769b5db0e9b09ab /doc
parent266aad7478bc7fbcc55eea7f942a0d373b838396 (diff)
downloadnumpy-a9ce90284fcfdfb654954840ccc449c711bc5b2f.tar.gz
DOC: directive fix (single instead of double backticks). (#21247)
This is invalid syntax (well technically valid, its literally rendering :role: followed by what's inside the double backticks as verbatim text instead of a link...
Diffstat (limited to 'doc')
-rw-r--r--doc/source/release/1.19.0-notes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/release/1.19.0-notes.rst b/doc/source/release/1.19.0-notes.rst
index 410890697..4a09920e4 100644
--- a/doc/source/release/1.19.0-notes.rst
+++ b/doc/source/release/1.19.0-notes.rst
@@ -317,9 +317,9 @@ New Features
``numpy.frompyfunc`` now accepts an identity argument
-----------------------------------------------------
-This allows the :attr:``numpy.ufunc.identity`` attribute to be set on the
+This allows the :attr:`numpy.ufunc.identity` attribute to be set on the
resulting ufunc, meaning it can be used for empty and multi-dimensional
-calls to :meth:``numpy.ufunc.reduce``.
+calls to :meth:`numpy.ufunc.reduce`.
(`gh-8255 <https://github.com/numpy/numpy/pull/8255>`__)