summaryrefslogtreecommitdiffstats
path: root/Modules/unicodedata.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-17 13:57:41 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-17 13:57:41 (GMT)
commit85a8629d2134969fc9c35b56509d3a76d9dccecf (patch)
tree6c124696b1ee60500341b94040d1055527c05991 /Modules/unicodedata.c
parentb5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0 (diff)
downloadcpython-85a8629d2134969fc9c35b56509d3a76d9dccecf.zip
cpython-85a8629d2134969fc9c35b56509d3a76d9dccecf.tar.gz
cpython-85a8629d2134969fc9c35b56509d3a76d9dccecf.tar.bz2
#18466: 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 27fadb7..d89316a 100644
--- a/Modules/unicodedata.c
+++ b/Modules/unicodedata.c
@@ -524,7 +524,7 @@ nfd_nfkd(PyObject *self, PyObject *input, int k)
while(stackptr) {
Py_UCS4 code = stack[--stackptr];
/* Hangul Decomposition adds three characters in
- a single step, so we need atleast that much room. */
+ a single step, so we need at least that much room. */
if (space < 3) {
Py_UCS4 *new_output;
osize += 10;