[Python-checkins] Fix typo: variables(s) (GH-8482)

Pablo Galindo webhook-mailer at python.org
Thu Jul 26 11:35:31 EDT 2018


https://github.com/python/cpython/commit/e42b705188271da108de42b55d9344642170aa2b
commit: e42b705188271da108de42b55d9344642170aa2b
branch: master
author: Andrés Delfino <adelfino at gmail.com>
committer: Pablo Galindo <Pablogsal at gmail.com>
date: 2018-07-26T16:35:23+01:00
summary:

Fix typo: variables(s) (GH-8482)

Remove extra `(s)` in the documentation of `compound_stmts`.

files:
M Doc/reference/compound_stmts.rst

diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 3372d27aa13f..208b3ed20e7e 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::
 



More information about the Python-checkins mailing list