From: Georg Brandl Date: Thu, 4 Nov 2010 07:24:55 +0000 (+0000) Subject: Fix markup. X-Git-Tag: v3.1.3rc1~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc5f381caa8273765a3011fffe16c42690ad1aa2;p=thirdparty%2FPython%2Fcpython.git Fix markup. --- diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index 23511689bd1c..5943887b2446 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*.