From 5ecd6c4db2b9d4b2d536b0210ad5aaf23bfc4dee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Tue, 17 Jun 2003 20:22:24 +0000 Subject: Fix typo in comment. --- Objects/complexobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/complexobject.c b/Objects/complexobject.c index a346ac2..4367ff6 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 -- cgit v0.12