[Python-checkins] Correct misspelling (GH-11470)

Cheryl Sabella webhook-mailer at python.org
Sun May 12 23:39:35 EDT 2019


https://github.com/python/cpython/commit/4ef9b8e5054d8bf9e1fcd4c3ba245a16265dc298
commit: 4ef9b8e5054d8bf9e1fcd4c3ba245a16265dc298
branch: master
author: Johnny Gérard <36079566+johnnygerard at users.noreply.github.com>
committer: Cheryl Sabella <cheryl.sabella at gmail.com>
date: 2019-05-12T23:39:32-04:00
summary:

Correct misspelling (GH-11470)

files:
M Doc/reference/expressions.rst

diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index cf7d05eef674..79ba4568a54b 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:



More information about the Python-checkins mailing list