summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/tuple.rst
diff options
context:
space:
mode:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2022-10-04 23:13:03 (GMT)
committerGitHub <noreply@github.com>2022-10-04 23:13:03 (GMT)
commit0bf6a617ed1832bc4803e532c8d6b3427cf48b13 (patch)
tree7fdb300225bae6bd3a2579f4b6a60a64fcf1343e /Doc/c-api/tuple.rst
parent4ebb0250314b57637d213cd5bc5f5ce5dd911d94 (diff)
downloadcpython-0bf6a617ed1832bc4803e532c8d6b3427cf48b13.zip
cpython-0bf6a617ed1832bc4803e532c8d6b3427cf48b13.tar.gz
cpython-0bf6a617ed1832bc4803e532c8d6b3427cf48b13.tar.bz2
gh-93738: Documentation C syntax (:c:type:`PyObject` -> :c:expr:`PyObject`) (#97776)
:c:type:`PyObject` -> :c:expr:`PyObject`
Diffstat (limited to 'Doc/c-api/tuple.rst')
-rw-r--r--Doc/c-api/tuple.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/tuple.rst b/Doc/c-api/tuple.rst
index 9b85522..0bfd4b3 100644
--- a/Doc/c-api/tuple.rst
+++ b/Doc/c-api/tuple.rst
@@ -161,7 +161,7 @@ type.
.. c:type:: PyStructSequence_Field
Describes a field of a struct sequence. As a struct sequence is modeled as a
- tuple, all fields are typed as :c:type:`PyObject*`. The index in the
+ tuple, all fields are typed as :c:expr:`PyObject*`. The index in the
:attr:`fields` array of the :c:type:`PyStructSequence_Desc` determines which
field of the struct sequence is described.