From 96e12d5f4f3c5a20986566038ee763dff3c228a1 Mon Sep 17 00:00:00 2001 From: Min ho Kim Date: Mon, 22 Jul 2019 06:12:33 +1000 Subject: Fix typos in docs, comments and test assert messages (#14872) --- Python/initconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/initconfig.c') diff --git a/Python/initconfig.c b/Python/initconfig.c index c44ae6bdfa..9247443028 100644 --- a/Python/initconfig.c +++ b/Python/initconfig.c @@ -300,7 +300,7 @@ PyStatus PyWideStringList_Append(PyWideStringList *list, const wchar_t *item) { if (list->length == PY_SSIZE_T_MAX) { - /* lenght+1 would overflow */ + /* length+1 would overflow */ return _PyStatus_NO_MEMORY(); } -- cgit v1.2.1