From: Andrew M. Kuchling Date: Thu, 6 Feb 2003 15:22:49 +0000 (+0000) Subject: Comment typo fix X-Git-Tag: v2.3c1~2005 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9172d3832c2bbdf093f3ec428574d83407f46c8;p=python Comment typo fix --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index d2e9b87be7..01eb7069f1 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -640,7 +640,7 @@ subtype_dealloc(PyObject *self) /* We get here only if the type has GC */ /* UnTrack and re-Track around the trashcan macro, alas */ - /* See explanation at end of funtion for full disclosure */ + /* See explanation at end of function for full disclosure */ PyObject_GC_UnTrack(self); ++_PyTrash_delete_nesting; Py_TRASHCAN_SAFE_BEGIN(self);