#9204: remove mentions of removed types in the types module.
diff --git a/Doc/c-api/tuple.rst b/Doc/c-api/tuple.rst
index 7f6a79c..3cbfe5b 100644
--- a/Doc/c-api/tuple.rst
+++ b/Doc/c-api/tuple.rst
@@ -15,10 +15,8 @@
 
 .. c:var:: PyTypeObject PyTuple_Type
 
-   .. index:: single: TupleType (in module types)
-
-   This instance of :c:type:`PyTypeObject` represents the Python tuple type; it is
-   the same object as ``tuple`` and ``types.TupleType`` in the Python layer..
+   This instance of :c:type:`PyTypeObject` represents the Python tuple type; it
+   is the same object as :class:`tuple` in the Python layer.
 
 
 .. c:function:: int PyTuple_Check(PyObject *p)