From 7c4a7e6f3cbd98ad547a3f1661582517612419e3 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Mon, 26 Aug 2013 01:32:56 +0300 Subject: =?UTF-8?q?#18803:=20fix=20more=20typos.=20=20Patch=20by=20F=C3=A9?= =?UTF-8?q?vry=20Thibault.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Modules/unicodedata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/unicodedata.c') 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)); -- cgit v1.2.1