[Python-checkins] r42689 - python/branches/tim-obmalloc/Objects/obmalloc.c

tim.peters python-checkins at python.org
Tue Feb 28 22:57:53 CET 2006


Author: tim.peters
Date: Tue Feb 28 22:57:51 2006
New Revision: 42689

Modified:
   python/branches/tim-obmalloc/Objects/obmalloc.c
Log:
Typo repair.


Modified: python/branches/tim-obmalloc/Objects/obmalloc.c
==============================================================================
--- python/branches/tim-obmalloc/Objects/obmalloc.c	(original)
+++ python/branches/tim-obmalloc/Objects/obmalloc.c	Tue Feb 28 22:57:51 2006
@@ -434,7 +434,7 @@
 };
 
 /*==========================================================================
-/* Arena management.
+Arena management.
 
 `arenas` is a vector of arena_objects.  It contains maxarenas entries, some of
 which may not be currently used (== they're arena_objects that aren't
@@ -475,7 +475,7 @@
 /* The head of the doubly-linked list of arenas with pools available. */
 static struct arena_object* partially_allocated_arenas = NULL;
 
-/* How many arena objects_do we initially allocate?
+/* How many arena_objects do we initially allocate?
  * 16 = can allocate 16 arenas = 16 * ARENA_SIZE = 4MB before growing the
  * `arenas` vector.
  */


More information about the Python-checkins mailing list