#4592: fix embedding example with new C API changes.
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst
index 851e99f..c05bcfd 100644
--- a/Doc/extending/extending.rst
+++ b/Doc/extending/extending.rst
@@ -342,7 +342,7 @@
so that it then gets inserted into ``sys.modules``.
When embedding Python, the :cfunc:`PyInit_spam` function is not called
-automatically unless there's an entry in the :cdata:`_PyImport_Inittab` table.
+automatically unless there's an entry in the :cdata:`PyImport_Inittab` table.
To add the module to the initialization table, use :cfunc:`PyImport_AppendInittab`,
optionally followed by an import of the module::