diff options
author | Johnny GĂ©rard <36079566+johnnygerard@users.noreply.github.com> | 2019-05-13 05:39:32 +0200 |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-05-12 23:39:32 -0400 |
commit | 4ef9b8e5054d8bf9e1fcd4c3ba245a16265dc298 (patch) | |
tree | fa0b7e6f7f689edeccaa0c6118a8899cd9903c71 /Doc/reference/expressions.rst | |
parent | bpo-36895: remove time.clock() as per removal notice. (GH-13270) (diff) | |
download | cpython-4ef9b8e5054d8bf9e1fcd4c3ba245a16265dc298.tar.gz cpython-4ef9b8e5054d8bf9e1fcd4c3ba245a16265dc298.tar.bz2 cpython-4ef9b8e5054d8bf9e1fcd4c3ba245a16265dc298.zip |
Correct misspelling (GH-11470)
Diffstat (limited to 'Doc/reference/expressions.rst')
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index cf7d05eef67..79ba4568a54 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -196,7 +196,7 @@ the comprehension is executed in a separate implicitly nested scope. This ensure that names assigned to in the target list don't "leak" into the enclosing scope. The iterable expression in the leftmost :keyword:`!for` clause is evaluated -directly in the enclosing scope and then passed as an argument to the implictly +directly in the enclosing scope and then passed as an argument to the implicitly nested scope. Subsequent :keyword:`!for` clauses and any filter condition in the leftmost :keyword:`!for` clause cannot be evaluated in the enclosing scope as they may depend on the values obtained from the leftmost iterable. For example: |