diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-05-16 05:20:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-16 05:20:37 (GMT) |
commit | 8a533ffb499b168ed4bdb707c9919290631e267d (patch) | |
tree | d36c359c9c97d479839fd78feda5f410730b2fd9 /Doc | |
parent | 9b5a0efcdc5b6d23b6e05bb3d30263983b7da308 (diff) | |
download | cpython-8a533ffb499b168ed4bdb707c9919290631e267d.zip cpython-8a533ffb499b168ed4bdb707c9919290631e267d.tar.gz cpython-8a533ffb499b168ed4bdb707c9919290631e267d.tar.bz2 |
Fix typos in documentation. Patch by tirkarthi. (GH-13354)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/idle.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst index ad44911..f511d64 100644 --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -50,7 +50,7 @@ default title and context menu. On macOS, there is one application menu. It dynamically changes according to the window currently selected. It has an IDLE menu, and some entries -described below are moved around to conform to Apple guidlines. +described below are moved around to conform to Apple guidelines. File menu (Shell and Editor) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -769,7 +769,7 @@ facilitate development of tkinter programs. Enter ``import tkinter as tk; root = tk.Tk()`` in standard Python and nothing appears. Enter the same in IDLE and a tk window appears. In standard Python, one must also enter ``root.update()`` to see the window. IDLE does the equivalent in the -background, about 20 times a second, which is about every 50 milleseconds. +background, about 20 times a second, which is about every 50 milliseconds. Next enter ``b = tk.Button(root, text='button'); b.pack()``. Again, nothing visibly changes in standard Python until one enters ``root.update()``. |