Skip to content

Commit 876756e

Browse files
Fix typos in documentation. Patch by tirkarthi. (GH-13354)
(cherry picked from commit 8a533ff) Co-authored-by: Terry Jan Reedy <[email protected]>
1 parent 78dd781 commit 876756e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Doc/library/idle.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ default title and context menu.
5050

5151
On macOS, there is one application menu. It dynamically changes according
5252
to the window currently selected. It has an IDLE menu, and some entries
53-
described below are moved around to conform to Apple guidlines.
53+
described below are moved around to conform to Apple guidelines.
5454

5555
File menu (Shell and Editor)
5656
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -769,7 +769,7 @@ facilitate development of tkinter programs. Enter ``import tkinter as tk;
769769
root = tk.Tk()`` in standard Python and nothing appears. Enter the same
770770
in IDLE and a tk window appears. In standard Python, one must also enter
771771
``root.update()`` to see the window. IDLE does the equivalent in the
772-
background, about 20 times a second, which is about every 50 milleseconds.
772+
background, about 20 times a second, which is about every 50 milliseconds.
773773
Next enter ``b = tk.Button(root, text='button'); b.pack()``. Again,
774774
nothing visibly changes in standard Python until one enters ``root.update()``.
775775

Lib/idlelib/help.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<head>
77
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
88
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9-
<title>IDLE &#8212; Python 3.8.0a3 documentation</title>
9+
<title>IDLE &#8212; Python 3.8.0a4 documentation</title>
1010
<link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
1111
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
1212

@@ -19,7 +19,7 @@
1919
<script type="text/javascript" src="../_static/sidebar.js"></script>
2020

2121
<link rel="search" type="application/opensearchdescription+xml"
22-
title="Search within Python 3.8.0a3 documentation"
22+
title="Search within Python 3.8.0a4 documentation"
2323
href="../_static/opensearch.xml"/>
2424
<link rel="author" title="About these documents" href="../about.html" />
2525
<link rel="index" title="Index" href="../genindex.html" />
@@ -72,7 +72,7 @@ <h3>Navigation</h3>
7272

7373

7474
<li>
75-
<a href="../index.html">3.8.0a3 Documentation</a> &#187;
75+
<a href="../index.html">3.8.0a4 Documentation</a> &#187;
7676
</li>
7777

7878
<li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
@@ -130,7 +130,7 @@ <h2>Menus<a class="headerlink" href="#menus" title="Permalink to this headline">
130130
default title and context menu.</p>
131131
<p>On macOS, there is one application menu. It dynamically changes according
132132
to the window currently selected. It has an IDLE menu, and some entries
133-
described below are moved around to conform to Apple guidlines.</p>
133+
described below are moved around to conform to Apple guidelines.</p>
134134
<div class="section" id="file-menu-shell-and-editor">
135135
<h3>File menu (Shell and Editor)<a class="headerlink" href="#file-menu-shell-and-editor" title="Permalink to this headline"></a></h3>
136136
<dl class="docutils">
@@ -910,7 +910,7 @@ <h3>Navigation</h3>
910910

911911

912912
<li>
913-
<a href="../index.html">3.8.0a3 Documentation</a> &#187;
913+
<a href="../index.html">3.8.0a4 Documentation</a> &#187;
914914
</li>
915915

916916
<li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
@@ -941,7 +941,7 @@ <h3>Navigation</h3>
941941
<br />
942942
<br />
943943

944-
Last updated on Apr 26, 2019.
944+
Last updated on May 16, 2019.
945945
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
946946
<br />
947947

0 commit comments

Comments
 (0)