From: Neal Norwitz Date: Sun, 1 Aug 2004 22:45:27 +0000 (+0000) Subject: Fix typo in comment X-Git-Tag: v2.4a2~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ecd8cd046446a6ce0be4098e218f4d17c315d48;p=thirdparty%2FPython%2Fcpython.git Fix typo in comment --- diff --git a/Include/listobject.h b/Include/listobject.h index 43048d33db14..e4867a5ed000 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -21,7 +21,7 @@ extern "C" { typedef struct { PyObject_VAR_HEAD - /* Vector of pointers to list elements. list[0] is ob_item{0], etc. */ + /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */ PyObject **ob_item; /* ob_item contains space for 'allocated' elements. The number