From: Walter Dörwald Date: Tue, 17 Jun 2003 20:22:24 +0000 (+0000) Subject: Fix typo in comment. X-Git-Tag: v2.3c1~392 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ecd6c4db2b9d4b2d536b0210ad5aaf23bfc4dee;p=python Fix typo in comment. --- diff --git a/Objects/complexobject.c b/Objects/complexobject.c index a346ac25a6..4367ff6570 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -831,7 +831,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwds) &r, &i)) return NULL; - /* Special-case for single argumet that is already complex */ + /* Special-case for single argument that is already complex */ if (PyComplex_CheckExact(r) && i == NULL && type == &PyComplex_Type) { /* Note that we can't know whether it's safe to return