From b6046301ef70ca30f106038cf3799278e770d3ca Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 4 Apr 2012 20:17:06 +0200 Subject: [PATCH] Closes #14495: fix typo. --- Lib/tkinter/ttk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py index 928e1de7818..5ae20a86789 100644 --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -1253,7 +1253,7 @@ class Treeview(Widget, tkinter.XView, tkinter.YView): def exists(self, item): - """Returns True if the specified item is present in the three, + """Returns True if the specified item is present in the tree, False otherwise.""" return bool(self.tk.call(self._w, "exists", item))