Fix comment typo

This commit is contained in:
Andrew M. Kuchling 2006-06-06 17:10:41 +00:00
parent dba6318ae6
commit 12ca69bc0e
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ fancy_roundup(int n)
* reported that, with this scheme, 89% of PyObject_REALLOC calls in
* PyNode_AddChild passed 1 for the size, and 9% passed 4. So this usually
* wastes very little memory, but is very effective at sidestepping
* platform-realloc disasters on vulnernable platforms.
* platform-realloc disasters on vulnerable platforms.
*
* Note that this would be straightforward if a node stored its current
* capacity. The code is tricky to avoid that.