summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorluz paz <luzpaz@users.noreply.github.com>2021-05-14 08:22:24 -0400
committerluz paz <luzpaz@users.noreply.github.com>2021-05-14 08:22:24 -0400
commitf411ba382f553326c50b2dbd3e512d7f096b981f (patch)
treec11815ec05782a83734d7d836443ee02fc7f4fb2 /examples
parentbce419352b22b2605df6c2158f3e20a15b8061cb (diff)
downloadpyserial-git-f411ba382f553326c50b2dbd3e512d7f096b981f.tar.gz
Fix misc. documentation and source comment typos
Found via `codespell -q 3 -L ba,ser,wont`
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/wxTerminal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wxTerminal.py b/examples/wxTerminal.py
index 64768a9..85e5b33 100755
--- a/examples/wxTerminal.py
+++ b/examples/wxTerminal.py
@@ -108,7 +108,7 @@ class TerminalSettingsDialog(wx.Dialog):
self.Bind(wx.EVT_BUTTON, self.OnCancel, id=self.button_cancel.GetId())
def OnOK(self, events):
- """Update data wil new values and close dialog."""
+ """Update data with new values and close dialog."""
self.settings.echo = self.checkbox_echo.GetValue()
self.settings.unprintable = self.checkbox_unprintable.GetValue()
self.settings.newline = self.radio_box_newline.GetSelection()