typo
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index c8c198d..faa03df 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -321,8 +321,8 @@
type_abstractmethods(PyTypeObject *type, void *context)
{
PyObject *mod = NULL;
- /* type its self has an __abstractmethods__ descriptor (this). Don't
- return that. */
+ /* type itself has an __abstractmethods__ descriptor (this). Don't return
+ that. */
if (type != &PyType_Type)
mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__");
if (!mod) {