From e0df7627191e367ad0496f582d2aa298b3c11848 Mon Sep 17 00:00:00 2001 From: Andrew Dalke Date: Sat, 27 May 2006 11:04:36 +0000 Subject: [PATCH] fixed typo --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 8cb32e1676..d37ca0c3a5 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -233,7 +233,7 @@ PyUnicodeObject *_PyUnicode_New(Py_ssize_t length) { register PyUnicodeObject *unicode; - /* Optimization fo empty strings */ + /* Optimization for empty strings */ if (length == 0 && unicode_empty != NULL) { Py_INCREF(unicode_empty); return unicode_empty; -- 2.40.0