]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo.
authorGeorg Brandl <georg@python.org>
Fri, 11 Aug 2006 07:35:51 +0000 (07:35 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 11 Aug 2006 07:35:51 +0000 (07:35 +0000)
Doc/api/newtypes.tex

index 4797df3aac8e2924d9d227b1cfb81e40fd02f897..577d26aa1e2f5ad57aee3162a821f12bca1f9f9c 100644 (file)
@@ -525,7 +525,7 @@ Foo_Type.ob_type = &PyType_Type;
   \member{tp_free}.  The object deallocator should be the one used to
   allocate the instance; this is normally \cfunction{PyObject_Del()}
   if the instance was allocated using \cfunction{PyObject_New()} or
-  \cfunction{PyOject_VarNew()}, or \cfunction{PyObject_GC_Del()} if
+  \cfunction{PyObject_VarNew()}, or \cfunction{PyObject_GC_Del()} if
   the instance was allocated using \cfunction{PyObject_GC_New()} or
   \cfunction{PyObject_GC_VarNew()}.