From 8dff3725aca2d82f3645af71cabc5c7eaf0b7e3a Mon Sep 17 00:00:00 2001 From: Carsten Schoenert Date: Sat, 3 Apr 2021 11:09:12 +0200 Subject: [PATCH] Typo fix: Correct 'allow to' -> 'allows one to' --- common/widgets/grid_combobox.cpp | 2 +- common/widgets/grid_icon_text_helpers.cpp | 2 +- pcbnew/grid_layer_box_helpers.cpp | 2 +- pcbnew/python/plugins/qfn_wizard.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/common/widgets/grid_combobox.cpp b/common/widgets/grid_combobox.cpp index b07a5d77aa..80f12907f7 100644 --- a/common/widgets/grid_combobox.cpp +++ b/common/widgets/grid_combobox.cpp @@ -94,7 +94,7 @@ void GRID_CELL_COMBOBOX::BeginEdit( int aRow, int aCol, wxGrid* aGrid ) // This is a work around for the combobox being simply dismissed when a // choice is made in it under OS X. The bug is almost certainly due to a // problem in focus events generation logic but it's not obvious to fix and - // for now this at least allows to use wxGrid. + // for now this at least allows one to use wxGrid. Combo()->Popup(); #endif diff --git a/common/widgets/grid_icon_text_helpers.cpp b/common/widgets/grid_icon_text_helpers.cpp index d3d32b540c..49b51cb300 100644 --- a/common/widgets/grid_icon_text_helpers.cpp +++ b/common/widgets/grid_icon_text_helpers.cpp @@ -202,7 +202,7 @@ void GRID_CELL_ICON_TEXT_POPUP::BeginEdit( int aRow, int aCol, wxGrid* aGrid ) // This is a work around for the combobox being simply dismissed when a // choice is made in it under OS X. The bug is almost certainly due to a // problem in focus events generation logic but it's not obvious to fix and - // for now this at least allows to use wxGrid. + // for now this at least allows one to use wxGrid. Combo()->Popup(); #endif diff --git a/pcbnew/grid_layer_box_helpers.cpp b/pcbnew/grid_layer_box_helpers.cpp index 09f59876a4..4e6859edf4 100644 --- a/pcbnew/grid_layer_box_helpers.cpp +++ b/pcbnew/grid_layer_box_helpers.cpp @@ -157,7 +157,7 @@ void GRID_CELL_LAYER_SELECTOR::BeginEdit( int aRow, int aCol, wxGrid* aGrid ) // This is a work around for the combobox being simply dismissed when a // choice is made in it under OS X. The bug is almost certainly due to a // problem in focus events generation logic but it's not obvious to fix and - // for now this at least allows to use wxGrid. + // for now this at least allows one to use wxGrid. if( !LayerBox()->IsPopupShown() ) LayerBox()->Popup(); #endif diff --git a/pcbnew/python/plugins/qfn_wizard.py b/pcbnew/python/plugins/qfn_wizard.py index 41f04b995e..87eaeb8f3c 100644 --- a/pcbnew/python/plugins/qfn_wizard.py +++ b/pcbnew/python/plugins/qfn_wizard.py @@ -82,7 +82,7 @@ class QFNWizard(FootprintWizardBase.FootprintWizard): pad_pitch = self.pads["pitch"] pad_length = self.pads["length"] - # offset allows to define how much of the pad is outside of the package + # offset allows one to define how much of the pad is outside of the package pad_offset = self.pads["offset"] pad_width = self.pads["width"]