]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix example in Doc/howto/functional.rst (#133978)
authorDave Jagoda <davejagoda+github@gmail.com>
Sun, 18 May 2025 16:26:17 +0000 (09:26 -0700)
committerGitHub <noreply@github.com>
Sun, 18 May 2025 16:26:17 +0000 (21:56 +0530)
Doc/howto/functional.rst

index 1f0608fb0fc53f02fd8c267f3ca87c14c3a7a803..b4f3463afee81256eccbba44aca95166530a27e3 100644 (file)
@@ -372,8 +372,8 @@ have the form::
                  for expr2 in sequence2
                  if condition2
                  for expr3 in sequence3
-                 ...
                  if condition3
+                 ...
                  for exprN in sequenceN
                  if conditionN )