diff options
author | Julien Palard <julien@palard.fr> | 2017-12-05 05:05:33 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-12-05 05:05:33 (GMT) |
commit | ae342cf7deebdcf2035f4064609b32b2102dadcf (patch) | |
tree | 02666e37368bbd8786695957120b179973ea16c5 /Doc | |
parent | b3edde8dd44c878e9f039a2165d00ff075157d4b (diff) | |
download | cpython-ae342cf7deebdcf2035f4064609b32b2102dadcf.zip cpython-ae342cf7deebdcf2035f4064609b32b2102dadcf.tar.gz cpython-ae342cf7deebdcf2035f4064609b32b2102dadcf.tar.bz2 |
Add a missing space in tkinter documentation. (GH-4692)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tkinter.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 3e1faed..f51add2 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -154,7 +154,7 @@ background material, while the second half can be taken to the keyboard as a handy reference. When trying to answer questions of the form "how do I do blah", it is often best -to find out how to do"blah" in straight Tk, and then convert this back into the +to find out how to do "blah" in straight Tk, and then convert this back into the corresponding :mod:`tkinter` call. Python programmers can often guess at the correct Python command by looking at the Tk documentation. This means that in order to use Tkinter, you will have to know a little bit about Tk. This document |