diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2023-05-18 02:35:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 02:35:46 (GMT) |
commit | c5b670efd1e6dabc94b6308734d63f762480b80f (patch) | |
tree | 341c64619c63ef9fccca272b0d591e14e09555e2 /Lib/idlelib | |
parent | 678bf57ed04b8c250f0bc031ebd264bece76e731 (diff) | |
download | cpython-c5b670efd1e6dabc94b6308734d63f762480b80f.zip cpython-c5b670efd1e6dabc94b6308734d63f762480b80f.tar.gz cpython-c5b670efd1e6dabc94b6308734d63f762480b80f.tar.bz2 |
gh-104499: Fix typo. (#104598)
Diffstat (limited to 'Lib/idlelib')
-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 5bd7ce7..24320b5 100644 --- a/Lib/idlelib/autocomplete_w.py +++ b/Lib/idlelib/autocomplete_w.py @@ -186,7 +186,7 @@ class AutoCompleteWindow: acw.withdraw() acw.wm_overrideredirect(1) try: - # Prevent grabbing focus on maxOS. + # Prevent grabbing focus on macOS. acw.tk.call("::tk::unsupported::MacWindowStyle", "style", acw._w, "help", "noActivates") except TclError: |