summaryrefslogtreecommitdiff
path: root/Lib/idlelib/calltip.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/calltip.py')
-rw-r--r--Lib/idlelib/calltip.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/calltip.py b/Lib/idlelib/calltip.py
index 1ff0deb968..596d2bcb27 100644
--- a/Lib/idlelib/calltip.py
+++ b/Lib/idlelib/calltip.py
@@ -31,7 +31,7 @@ class Calltip:
def _make_tk_calltip_window(self):
# See __init__ for usage
- return calltip_w.Calltip(self.text)
+ return calltip_w.CalltipWindow(self.text)
def _remove_calltip_window(self, event=None):
if self.active_calltip:
@@ -44,7 +44,7 @@ class Calltip:
return "break"
def try_open_calltip_event(self, event):
- """Happens when it would be nice to open a Calltip, but not really
+ """Happens when it would be nice to open a calltip, but not really
necessary, for example after an opening bracket, so function calls
won't be made.
"""