[3.10] Fix typos in the Include directory (GH-28745) (GH-28789)
(cherry picked from commit 8e8f7522171ef82f2f5049940f815e00e38c6f42)
diff --git a/Include/object.h b/Include/object.h
index 9e6a8f4..61e638c 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -590,7 +590,7 @@ static inline PyObject* _Py_XNewRef(PyObject *obj)
}
// Py_NewRef() and Py_XNewRef() are exported as functions for the stable ABI.
-// Names overriden with macros by static inline functions for best
+// Names overridden with macros by static inline functions for best
// performances.
#define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
#define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))