https://github.com/python/cpython/commit/426fa77a193e0e14ce1f825f3a5f5038e387241f commit: 426fa77a193e0e14ce1f825f3a5f5038e387241f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: terryjreedy <[email protected]> date: 2025-10-16T15:09:14Z summary:
[3.13] gh-140078: fix typo in tkinter docs (GH-140081) (#140218) gh-140078: fix typo in tkinter docs (GH-140081) Remove extraneous word. (cherry picked from commit 5f357f3b0de0d937afb0154d0df7e0298c2523cf) Co-authored-by: wangxiaolei <[email protected]> files: M Doc/library/tkinter.rst diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index f284988daf2d4e..be26af02bcee0d 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. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
