diff options
Diffstat (limited to 'Include/listobject.h')
-rw-r--r-- | Include/listobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/listobject.h b/Include/listobject.h index 43048d3..e4867a5 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 |