]> granicus.if.org Git - python/commitdiff
Fix typo: variables(s) (GH-8482)
authorAndrés Delfino <adelfino@gmail.com>
Thu, 26 Jul 2018 15:35:23 +0000 (12:35 -0300)
committerPablo Galindo <Pablogsal@gmail.com>
Thu, 26 Jul 2018 15:35:23 +0000 (16:35 +0100)
Remove extra `(s)` in the documentation of `compound_stmts`.

Doc/reference/compound_stmts.rst

index 3372d27aa13fb0bcb61322b4a876899a4203fbd7..208b3ed20e7ec35b73fb83b8adcea15f7dcbd20f 100644 (file)
@@ -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::