diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2020-10-29 12:35:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 12:35:15 -0400 |
commit | 3623a3da34ce1ee870d3f9d52582b2a082cf5f01 (patch) | |
tree | 3e851740fda3bb6c0341619ae6b2e528d9719279 /grc/gui | |
parent | cae088eb3ef5bc12844fbbd265363bfadec6a798 (diff) |
Fix typos throughout the code
* Fix various typos
Found via `codespell v2.0.dev`
`codespell -q 3 -L ans,fo,hist,inout,ist,ith,nd,sinc,uint -S ./volk`
Diffstat (limited to 'grc/gui')
-rw-r--r-- | grc/gui/ParamWidgets.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/gui/ParamWidgets.py b/grc/gui/ParamWidgets.py index f5425bc10e..665a1ff524 100644 --- a/grc/gui/ParamWidgets.py +++ b/grc/gui/ParamWidgets.py @@ -360,8 +360,8 @@ class DirectoryParam(FileParam): dir_dialog.set_current_folder(dirname) dir_dialog.set_local_only(True) dir_dialog.set_select_multiple(False) - - # Show dialog and update paramter on success + + # Show dialog and update parameter on success if Gtk.ResponseType.OK == dir_dialog.run(): path = dir_dialog.get_filename() self._input.set_text(path) |