diff options
author | Georg Brandl <georg@python.org> | 2006-02-21 20:41:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-21 20:41:29 (GMT) |
commit | 7d42d3cd5999e0691d63267fda03fefde34e0a2d (patch) | |
tree | 70710eeff57e454bbd1322270ac34ce979532a19 /Doc/api | |
parent | 868e704e271c88603e7974a1dbc88bb67b9a3b19 (diff) | |
download | cpython-7d42d3cd5999e0691d63267fda03fefde34e0a2d.zip cpython-7d42d3cd5999e0691d63267fda03fefde34e0a2d.tar.gz cpython-7d42d3cd5999e0691d63267fda03fefde34e0a2d.tar.bz2 |
fix typo
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/newtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex index bfce26c..114c9bb 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()}. |