]> granicus.if.org Git - python/commitdiff
Correct misspelling (GH-11470)
authorJohnny Gérard <36079566+johnnygerard@users.noreply.github.com>
Mon, 13 May 2019 03:39:32 +0000 (05:39 +0200)
committerCheryl Sabella <cheryl.sabella@gmail.com>
Mon, 13 May 2019 03:39:32 +0000 (23:39 -0400)
Doc/reference/expressions.rst

index cf7d05eef6746a49dcbc86b3a4954666ad9e4d60..79ba4568a54ba434ed4bf7197a4b6e4331aaaf27 100644 (file)
@@ -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: