summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-07-14 01:49:44 (GMT)
committerGitHub <noreply@github.com>2020-07-14 01:49:44 (GMT)
commitb4cd77de05e5bbaa6a4be90f710b787e0790c36f (patch)
treef613ad870a81a65235434bbd16a01b4e14d66bb6 /Doc/tutorial
parent73f20186c25b6c976baa1c11cac3491df73bed6c (diff)
downloadcpython-b4cd77de05e5bbaa6a4be90f710b787e0790c36f.zip
cpython-b4cd77de05e5bbaa6a4be90f710b787e0790c36f.tar.gz
cpython-b4cd77de05e5bbaa6a4be90f710b787e0790c36f.tar.bz2
Fix repeated words in Classes tutorial (GH-21455)
The phrase "At any time during execution," was repeated twice. Automerge-Triggered-By: @Mariatta (cherry picked from commit 4f28f75deefc6e8f65694f96f1a40b0a26fc385d) Co-authored-by: Paul McMillan <paul@mcmillan.ws>
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/classes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst
index 250d2a9..685552f 100644
--- a/Doc/tutorial/classes.rst
+++ b/Doc/tutorial/classes.rst
@@ -114,8 +114,8 @@ accessible. "Directly accessible" here means that an unqualified reference to a
name attempts to find the name in the namespace.
Although scopes are determined statically, they are used dynamically. At any
-time during execution, At any time during execution, there are 3 or 4 nested
-scopes whose namespaces are directly accessible:
+time during execution, there are 3 or 4 nested scopes whose namespaces are
+directly accessible:
* the innermost scope, which is searched first, contains the local names
* the scopes of any enclosing functions, which are searched starting with the