]> granicus.if.org Git - python/commitdiff
Fix comment typo
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 6 Jun 2006 17:10:41 +0000 (17:10 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 6 Jun 2006 17:10:41 +0000 (17:10 +0000)
Parser/node.c

index 97f887ac9b3d6269d0353fb15f3859c0ef967ac9..d133a0d17825118f9aad313ed7ba5f056669edf6 100644 (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.