diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-12-11 22:59:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-11 22:59:08 -0500 |
commit | e570211406f9bfbe16eff8d10e614d90497e08df (patch) | |
tree | 125352d976b2f4fc56ef8fec673153c32a297142 /Lib/idlelib/autocomplete_w.py | |
parent | e56975351bc2c574c728f738e88effba7116279f (diff) | |
download | cpython-git-e570211406f9bfbe16eff8d10e614d90497e08df.tar.gz |
Fix idlelib comment typos reported by Mike on pull request 4803. (#4807)
Diffstat (limited to 'Lib/idlelib/autocomplete_w.py')
-rw-r--r-- | Lib/idlelib/autocomplete_w.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/autocomplete_w.py b/Lib/idlelib/autocomplete_w.py index 7c3138f404..12113f95e6 100644 --- a/Lib/idlelib/autocomplete_w.py +++ b/Lib/idlelib/autocomplete_w.py @@ -246,7 +246,7 @@ class AutoCompleteWindow: acw.wm_geometry("+%d+%d" % (new_x, new_y)) if platform.system().startswith('Windows'): - # See issue 15786. When on windows platform, Tk will misbehaive + # See issue 15786. When on windows platform, Tk will misbehave # to call winconfig_event multiple times, we need to prevent this, # otherwise mouse button double click will not be able to used. acw.unbind(WINCONFIG_SEQUENCE, self.winconfigid) |