#18803: fix more typos. Patch by Févry Thibault.

This commit is contained in:
Ezio Melotti 2013-08-26 01:32:56 +03:00
parent bf8ab77f94
commit 7c4a7e6f3c
17 changed files with 20 additions and 20 deletions

View file

@ -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));