From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 16 Oct 2025 15:22:57 +0000 (+0200) Subject: [3.14] gh-140078: fix typo in tkinter docs (GH-140081) (#140217) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48b60495b73e1f8db9348e41c5c17ce8d1f3ec05;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-140078: fix typo in tkinter docs (GH-140081) (#140217) gh-140078: fix typo in tkinter docs (GH-140081) Remove extraneous word. (cherry picked from commit 5f357f3b0de0d937afb0154d0df7e0298c2523cf) Co-authored-by: wangxiaolei --- diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index f284988daf2d..be26af02bcee 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -392,7 +392,7 @@ by spaces. Without getting into too many details, notice the following: * Operations which are implemented as separate *commands* in Tcl (like ``grid`` or ``destroy``) are represented as *methods* on Tkinter widget objects. As you'll see shortly, at other times Tcl uses what appear to be - method calls on widget objects, which more closely mirror what would is + method calls on widget objects, which more closely mirror what is used in Tkinter.