@@ -524,9 +524,9 @@ static PyObject *ui_view_set_scroll_sizes(PyObject *self, PyObject *args)
524524 &map_mode, // @pyparm int|mapMode||The mapping mode for this view.
525525 &total.cx , &total.cy , // @pyparm (x,y)|sizeTotal||The total size of the view. Sizes are in
526526 // logical units. Both x and y must be greater than zero.
527- &page.cx , &page.cy , // @pyparm (x,y)|sizePage|win32ui.rectDefault|The number of untils to
527+ &page.cx , &page.cy , // @pyparm (x,y)|sizePage|win32ui.rectDefault|The number of units to
528528 // scroll in response to a page-down command.
529- &line.cx , &line.cy )) // @pyparm (x,y)|sizePage|win32ui.rectDefault|The number of untils to
529+ &line.cx , &line.cy )) // @pyparm (x,y)|sizePage|win32ui.rectDefault|The number of units to
530530 // scroll in response to a line-down command.
531531 return NULL ;
532532
@@ -652,7 +652,7 @@ PyObject *PyCCtrlView_on_command(PyObject *self, PyObject *args)
652652 return DoBaseOnCommand (CPythonCtrlView, &PyCCtrlView::type, self, args);
653653}
654654
655- // @object PyCCtrlView|A class which implementes a CCtrlView (ie, a view based on a dialog resource.
655+ // @object PyCCtrlView|A class which implements a CCtrlView (ie, a view based on a dialog resource.
656656static struct PyMethodDef PyCCtrlView_methods[] = {
657657 {" OnCommand" , PyCCtrlView_on_command,
658658 1 }, // @pymeth OnCommand|Calls the standard Python framework OnCommand handler
@@ -879,7 +879,7 @@ PyObject *PyCEditView_on_command(PyObject *self, PyObject *args)
879879// inherited from view
880880//
881881// /////////////////////////////////////
882- // @object PyCEditView|A class which implementes a CView of a text file. Derived from <o PyCView> and <o PyCEdit>
882+ // @object PyCEditView|A class which implements a CView of a text file. Derived from <o PyCView> and <o PyCEdit>
883883// objects.
884884static struct PyMethodDef ui_edit_window_methods[] = {
885885 {" IsModified" , ui_edit_window_is_modified, 1 }, // @pymeth IsModified|Indicates if the view's document is modified.
@@ -962,7 +962,7 @@ PyObject *PyCListView_on_command(PyObject *self, PyObject *args)
962962}
963963
964964// /////////////////////////////////////
965- // @object PyCListView|A class which implementes a CListView. Derived from <o PyCView> and <o PyCListCtrl> objects.
965+ // @object PyCListView|A class which implements a CListView. Derived from <o PyCView> and <o PyCListCtrl> objects.
966966static struct PyMethodDef ui_list_view_methods[] = {
967967 {" PreCreateWindow" , PyCListView_pre_create_window,
968968 1 }, // @pymeth PreCreateWindow|Calls the underlying MFC PreCreateWindow method.
@@ -1038,7 +1038,7 @@ PyObject *PyCTreeView_on_command(PyObject *self, PyObject *args)
10381038}
10391039
10401040// /////////////////////////////////////
1041- // @object PyCTreeView|A class which implementes a CTreeView. Derived from <o PyCView> and <o PyCTreeCtrl> objects.
1041+ // @object PyCTreeView|A class which implements a CTreeView. Derived from <o PyCView> and <o PyCTreeCtrl> objects.
10421042static struct PyMethodDef ui_tree_view_methods[] = {
10431043 {" PreCreateWindow" , PyCTreeView_pre_create_window,
10441044 1 }, // @pymeth PreCreateWindow|Calls the underlying MFC PreCreateWindow method.
@@ -1097,7 +1097,7 @@ PyObject *PyCFormView_on_command(PyObject *self, PyObject *args)
10971097 return DoBaseOnCommand (CPythonFormView, &PyCFormView::type, self, args);
10981098}
10991099
1100- // @object PyCFormView|A class which implementes a CFormView (ie, a view based on a dialog resource.
1100+ // @object PyCFormView|A class which implements a CFormView (ie, a view based on a dialog resource.
11011101static struct PyMethodDef PyCFormView_methods[] = {
11021102 {" OnCommand" , PyCFormView_on_command,
11031103 1 }, // @pymeth OnCommand|Calls the standard Python framework OnCommand handler
0 commit comments