summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-06-06 17:10:41 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-06-06 17:10:41 (GMT)
commit12ca69bc0e42e799db52cfd0030c8b1d18049bef (patch)
treefbb445f112a07720feec706cde8359627c1d7252 /Parser
parentdba6318ae6e60942c2485ba7f9fe7bd44657a440 (diff)
downloadcpython-12ca69bc0e42e799db52cfd0030c8b1d18049bef.zip
cpython-12ca69bc0e42e799db52cfd0030c8b1d18049bef.tar.gz
cpython-12ca69bc0e42e799db52cfd0030c8b1d18049bef.tar.bz2
Fix comment typo
Diffstat (limited to 'Parser')
-rw-r--r--Parser/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/node.c b/Parser/node.c
index 97f887a..d133a0d 100644
--- a/Parser/node.c
+++ b/Parser/node.c
@@ -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.