]> granicus.if.org Git - python/commitdiff
Fix markup.
authorGeorg Brandl <georg@python.org>
Thu, 4 Nov 2010 07:24:55 +0000 (07:24 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 4 Nov 2010 07:24:55 +0000 (07:24 +0000)
Doc/c-api/dict.rst

index 23511689bd1cf03914f702e3a267a577427e43c1..5943887b2446b053a9ee0c522afe8b41572a6b54 100644 (file)
@@ -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*.