From b95ec09a44d59c57a68591e35df10f583c86a1aa Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 2 Sep 2001 18:35:54 +0000 Subject: [PATCH] Repair typo in comment. --- Objects/dictobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 91d2c536ab..b98cccf036 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -1703,7 +1703,7 @@ dict_init(PyObject *self, PyObject *args, PyObject *kwds) return -1; if (arg != NULL) { if (PyDict_Merge(self, arg, 1) < 0) { - /* An error like "AttibuteError: keys" is too + /* An error like "AttributeError: keys" is too cryptic in this context. */ if (PyErr_ExceptionMatches(PyExc_AttributeError)) { PyErr_SetString(PyExc_TypeError, -- 2.40.0