summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-07-26 15:35:23 (GMT)
committerPablo Galindo <Pablogsal@gmail.com>2018-07-26 15:35:23 (GMT)
commite42b705188271da108de42b55d9344642170aa2b (patch)
treecc2b213abc971efc3bde36778680654a07f192a8 /Doc
parent3b5342caaae6316f3a42af7464bbf6deca62e4ef (diff)
downloadcpython-e42b705188271da108de42b55d9344642170aa2b.zip
cpython-e42b705188271da108de42b55d9344642170aa2b.tar.gz
cpython-e42b705188271da108de42b55d9344642170aa2b.tar.bz2
Fix typo: variables(s) (GH-8482)
Remove extra `(s)` in the documentation of `compound_stmts`.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/compound_stmts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 3372d27..208b3ed 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -176,7 +176,7 @@ statement executed in the first suite skips the rest of the suite and continues
with the next item, or with the :keyword:`else` clause if there is no next
item.
-The for-loop makes assignments to the variables(s) in the target list.
+The for-loop makes assignments to the variables in the target list.
This overwrites all previous assignments to those variables including
those made in the suite of the for-loop::