From 4ecd8cd046446a6ce0be4098e218f4d17c315d48 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 1 Aug 2004 22:45:27 +0000 Subject: [PATCH] Fix typo in comment --- Include/listobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/listobject.h b/Include/listobject.h index 43048d33db1..e4867a5ed00 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