diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2022-10-04 23:13:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 23:13:03 (GMT) |
commit | 0bf6a617ed1832bc4803e532c8d6b3427cf48b13 (patch) | |
tree | 7fdb300225bae6bd3a2579f4b6a60a64fcf1343e /Doc/c-api/tuple.rst | |
parent | 4ebb0250314b57637d213cd5bc5f5ce5dd911d94 (diff) | |
download | cpython-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.rst | 2 |
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. |