summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Doc/c-api/dict.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst
index 23511689bd..5943887b24 100644
--- a/Doc/c-api/dict.rst
+++ b/Doc/c-api/dict.rst
@@ -117,17 +117,17 @@ Dictionary Objects
.. cfunction:: PyObject* PyDict_Items(PyObject *p)
- Return a :c:type:`PyListObject` containing all the items from the dictionary.
+ Return a :ctype:`PyListObject` containing all the items from the dictionary.
.. cfunction:: PyObject* PyDict_Keys(PyObject *p)
- Return a :c:type:`PyListObject` containing all the keys from the dictionary.
+ Return a :ctype:`PyListObject` containing all the keys from the dictionary.
.. cfunction:: PyObject* PyDict_Values(PyObject *p)
- Return a :c:type:`PyListObject` containing all the values from the dictionary
+ Return a :ctype:`PyListObject` containing all the values from the dictionary
*p*.