diff options
Diffstat (limited to 'Modules/_io/textio.c')
-rw-r--r-- | Modules/_io/textio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c index b4007c2..f13dcb4 100644 --- a/Modules/_io/textio.c +++ b/Modules/_io/textio.c @@ -983,7 +983,7 @@ textiowrapper_init(textio *self, PyObject *args, PyObject *kwds) errors); if (self->encoder == NULL) goto error; - /* Get the normalized named of the codec */ + /* Get the normalized name of the codec */ res = PyObject_GetAttrString(codec_info, "name"); if (res == NULL) { if (PyErr_ExceptionMatches(PyExc_AttributeError)) |