summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/classes.rst
diff options
context:
space:
mode:
authorPaul McMillan <paul@mcmillan.ws>2020-07-14 01:26:23 (GMT)
committerGitHub <noreply@github.com>2020-07-14 01:26:23 (GMT)
commit4f28f75deefc6e8f65694f96f1a40b0a26fc385d (patch)
tree96e1f749c5481b3fbecadcd93d9453155cabe514 /Doc/tutorial/classes.rst
parent8dd32fe645c9503cf8e6be4b1580c3a59b450168 (diff)
downloadcpython-4f28f75deefc6e8f65694f96f1a40b0a26fc385d.zip
cpython-4f28f75deefc6e8f65694f96f1a40b0a26fc385d.tar.gz
cpython-4f28f75deefc6e8f65694f96f1a40b0a26fc385d.tar.bz2
Fix repeated words in Classes tutorial (GH-21455)
The phrase "At any time during execution," was repeated twice. Automerge-Triggered-By: @Mariatta
Diffstat (limited to 'Doc/tutorial/classes.rst')
-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