summaryrefslogtreecommitdiff
path: root/Modules/unicodedata.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-26 01:32:56 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-26 01:32:56 +0300
commit7c4a7e6f3cbd98ad547a3f1661582517612419e3 (patch)
tree401bde344fe15ab617c9be5c0e6fec7f4363d81f /Modules/unicodedata.c
parentbf8ab77f940013e42f7b9af5b4fd2100238f389b (diff)
downloadcpython-git-7c4a7e6f3cbd98ad547a3f1661582517612419e3.tar.gz
#18803: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r--Modules/unicodedata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
index d89316a347..75c162656e 100644
--- a/Modules/unicodedata.c
+++ b/Modules/unicodedata.c
@@ -507,7 +507,7 @@ nfd_nfkd(PyObject *self, PyObject *input, int k)
stackptr = 0;
isize = PyUnicode_GET_LENGTH(input);
- /* Overallocate atmost 10 characters. */
+ /* Overallocate at most 10 characters. */
space = (isize > 10 ? 10 : isize) + isize;
osize = space;
output = PyMem_Malloc(space * sizeof(Py_UCS4));