From 4a1e8d999769ceb4dac1809645d02459225afc15 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 17 Jul 2020 12:03:26 -0700 Subject: [PATCH] Fix a small grammatical mistake in a comment --- Objects/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/object.c b/Objects/object.c index 4481fc91e1db18..fe3734404f5cf9 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1169,7 +1169,7 @@ _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, /* Make sure the logic of _PyObject_GetMethod is in sync with this method. - When suppress=1, this function suppress AttributeError. + When suppress=1, this function suppresses AttributeError. */ PyTypeObject *tp = Py_TYPE(obj);