From 99a162a9a9e02a40c334a7411cf0e1ed636015d7 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 18 May 2023 10:54:45 -0700 Subject: [PATCH] [3.11] gh-104499: Fix typo. (GH-104598) (#104599) gh-104499: Fix typo. (GH-104598) (cherry picked from commit c5b670efd1e6dabc94b6308734d63f762480b80f) Co-authored-by: Terry Jan Reedy --- Lib/idlelib/autocomplete_w.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/autocomplete_w.py b/Lib/idlelib/autocomplete_w.py index 5bd7ce7f5e5a..24320b5a3bff 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: -- 2.47.3