@@ -535,7 +535,7 @@ static PyType_Spec OSD_type_spec = {
535
535
#endif
536
536
537
537
/*
538
- * ClassProviderBase class
538
+ * ClassProvidesBase class
539
539
*/
540
540
typedef struct
541
541
{
@@ -1064,7 +1064,7 @@ static PyType_Slot IB_type_slots[] = {
1064
1064
{Py_tp_dealloc , IB_dealloc },
1065
1065
{Py_tp_methods , IB_methods },
1066
1066
{Py_tp_members , IB_members },
1067
- /* tp_base cannot be set as a stot -- pass to PyType_FromModuleAndSpec */
1067
+ /* tp_base cannot be set as a slot -- pass to PyType_FromModuleAndSpec */
1068
1068
{0 , NULL }
1069
1069
};
1070
1070
@@ -1970,7 +1970,7 @@ static PyType_Slot VB_type_slots[] = {
1970
1970
{Py_tp_clear , VB_clear },
1971
1971
{Py_tp_dealloc , VB_dealloc },
1972
1972
{Py_tp_methods , VB_methods },
1973
- /* tp_base cannot be set as a stot -- pass to PyType_FromModuleAndSpec */
1973
+ /* tp_base cannot be set as a slot -- pass to PyType_FromModuleAndSpec */
1974
1974
{0 , NULL }
1975
1975
};
1976
1976
@@ -1997,13 +1997,13 @@ typedef struct
1997
1997
PyTypeObject * lookup_base_class ;
1998
1998
PyTypeObject * verifying_base_class ;
1999
1999
PyObject * adapter_hooks ;
2000
- /* members importe from 'zope.interface.declarations'
2000
+ /* members imported from 'zope.interface.declarations'
2001
2001
*/
2002
2002
PyObject * empty ;
2003
2003
PyObject * fallback ;
2004
2004
PyObject * builtin_impl_specs ;
2005
2005
PyTypeObject * implements_class ;
2006
- /* flag: have we importe the next set of members yet from
2006
+ /* flag: have we imported the next set of members yet from
2007
2007
* 'zope.interface.declarations?
2008
2008
*/
2009
2009
int decl_imported ;
0 commit comments