Change the type of the tp_dealloc back to what it really is.
Change a section title to fit in better.
diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex
index 89f95be..3e246f7 100644
--- a/Doc/ext/newtypes.tex
+++ b/Doc/ext/newtypes.tex
@@ -347,7 +347,7 @@
 \index{finalization, of objects}
 
 \begin{verbatim}
-    freefunc tp_dealloc;
+    destructor tp_dealloc;
 \end{verbatim}
 
 This function is called when the reference count of the instance of
@@ -918,7 +918,7 @@
 actual error occurs, it should set an exception and return \NULL.
 
 
-\subsection{Cycle Collector Support
+\subsection{Supporting the Cycle Collector
             \label{example-cycle-support}}
 
 This example shows only enough of the implementation of an extension