mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
#18803: fix more typos. Patch by Févry Thibault.
This commit is contained in:
parent
bf8ab77f94
commit
7c4a7e6f3c
17 changed files with 20 additions and 20 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue