From: Brett Cannon Date: Fri, 17 Jul 2020 20:09:21 +0000 (-0700) Subject: Fix a small grammatical mistake in a comment (GH-21526) X-Git-Tag: v3.10.0a1~378 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d583738a87c3019dcfe06ed4a0002d1d6c9e9762;p=thirdparty%2FPython%2Fcpython.git Fix a small grammatical mistake in a comment (GH-21526) Automerge-Triggered-By: @brettcannon --- diff --git a/Objects/object.c b/Objects/object.c index 4481fc91e1db..fe3734404f5c 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);