[Zodb-checkins] CVS: Zope/lib/python/BTrees - BTreeModuleTemplate.c:1.25
Tim Peters
tim.one@comcast.net
Fri, 31 May 2002 13:30:30 -0400
Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv20477
Modified Files:
BTreeModuleTemplate.c
Log Message:
Heh -- I changed a BTreeItems member name from "value" to "child", but
neglected to change the name in new comments barely an hour old.
=== Zope/lib/python/BTrees/BTreeModuleTemplate.c 1.24 => 1.25 ===
/* firstbucket points to the bucket containing the smallest key in
* the BTree. This is found by traversing leftmost child pointers
- * (data[0].value) until reaching a Bucket.
+ * (data[0].child) until reaching a Bucket.
*/
Bucket *firstbucket;
/* The BTree points to 'len' children, via the "child" fields of the data
* array. There are len-1 keys in the 'key' fields, stored in increasing
* order. data[0].key is unused. For i in 0 .. len-1, all keys reachable
- * from data[i].value are >= data[i].key and < data[i+1].key, at the
+ * from data[i].child are >= data[i].key and < data[i+1].key, at the
* endpoints pretending that data[0].key is minus infinity and
* data[len].key is positive infinity.
*/