summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-05-26 19:51:10 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-05-26 19:51:10 (GMT)
commit07bbfc6a51578ac0acd8be5ccf2387299d1814f5 (patch)
tree981035664fe1250374b3e85516b2d9a32ba83692 /Objects/unicodeobject.c
parente6e43c867dae21a3312f75037880b20b2a41a252 (diff)
downloadcpython-07bbfc6a51578ac0acd8be5ccf2387299d1814f5.zip
cpython-07bbfc6a51578ac0acd8be5ccf2387299d1814f5.tar.gz
cpython-07bbfc6a51578ac0acd8be5ccf2387299d1814f5.tar.bz2
Comment typo
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 20f943f..d5935e3 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -196,7 +196,7 @@ int unicode_resize(register PyUnicodeObject *unicode,
/* We allocate one more byte to make sure the string is Ux0000 terminated.
The overallocation is also used by fastsearch, which assumes that it's
- safe to look at str[length] (without makeing any assumptions about what
+ safe to look at str[length] (without making any assumptions about what
it contains). */
oldstr = unicode->str;