From: Georg Brandl <georg@python.org>
Date: Tue, 21 Feb 2006 20:41:29 +0000 (+0000)
Subject: fix typo
X-Git-Tag: v2.5a0~558
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d42d3cd5999e0691d63267fda03fefde34e0a2d;p=python

fix typo
---

diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex
index bfce26c9b7..114c9bb6d7 100644
--- a/Doc/api/newtypes.tex
+++ b/Doc/api/newtypes.tex
@@ -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()}.