diff options
Diffstat (limited to 'Doc/extending/building.rst')
-rw-r--r-- | Doc/extending/building.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/building.rst b/Doc/extending/building.rst index 69dffbd..5381707 100644 --- a/Doc/extending/building.rst +++ b/Doc/extending/building.rst @@ -17,7 +17,7 @@ The initialization function has the signature: .. c:function:: PyObject* PyInit_modulename(void) -It returns either a fully-initialized module, or a :c:type:`PyModuleDef` +It returns either a fully initialized module, or a :c:type:`PyModuleDef` instance. See :ref:`initializing-modules` for details. .. highlight:: python |