summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-18 10:11:21 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-18 10:11:21 +0300
commitace49327376413fb165da9b54a7c4eff0d33eecf (patch)
tree570161d3d4d2bbf8c0a4676649dcc807d5041662 /Doc
parent13aa48568a0b14288163565d08362614de60321c (diff)
downloadcpython-ace49327376413fb165da9b54a7c4eff0d33eecf.tar.gz
#11865: fix typo in init.rst.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/init.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index fd6a9a238d..a4e4ad9a3c 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -906,7 +906,7 @@ a worker thread and the actual call than made at the earliest convenience by the
main thread where it has possession of the global interpreter lock and can
perform any Python API calls.
-.. cfunction:: void Py_AddPendingCall( int (*func)(void *, void *arg) )
+.. cfunction:: void Py_AddPendingCall(int (*func)(void *), void *arg)
.. index:: single: Py_AddPendingCall()