summaryrefslogtreecommitdiff
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
commit340bb95ffd9c0947a7f6ac7f4520efada7204bc0 (patch)
treecc1d4bbed297cebda70adfe1f3337712e6fdfa1f
parent2876a8c272ec9fd7ddd9fec62676bc61ba947747 (diff)
downloadcpython-git-340bb95ffd9c0947a7f6ac7f4520efada7204bc0.tar.gz
#11865: fix typo in init.rst.
-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 67861098aa..12abf1e9e6 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -892,7 +892,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()