diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-26 01:32:56 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-26 01:32:56 +0300 |
commit | 7c4a7e6f3cbd98ad547a3f1661582517612419e3 (patch) | |
tree | 401bde344fe15ab617c9be5c0e6fec7f4363d81f /Modules/unicodedata.c | |
parent | bf8ab77f940013e42f7b9af5b4fd2100238f389b (diff) | |
download | cpython-git-7c4a7e6f3cbd98ad547a3f1661582517612419e3.tar.gz |
#18803: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r-- | Modules/unicodedata.c | 2 |
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)); |