summaryrefslogtreecommitdiff
path: root/Modules/unicodedata.c
diff options
context:
space:
mode:
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 27fadb7019..d89316a347 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;