Skip to content

Commit fccb504

Browse files
authored
PEP 798: Small Typo Fix (#4500)
fix typo: extra copy of genexp in motivation section
1 parent 54ab504 commit fccb504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

peps/pep-0798.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ an additional alternative::
8888
[*it for it in its] # list with the concatenation of iterables in 'its'
8989
{*it for it in its} # set with the union of iterables in 'its'
9090
{**d for d in dicts} # dict with the combination of dicts in 'dicts'
91-
(*it for it in its) # generator of the concatenation of iterables in 'its' (*it for it in its)
91+
(*it for it in its) # generator of the concatenation of iterables in 'its'
9292

9393
This proposal also extends to asynchronous comprehensions and generator
9494
expressions, such that, for example, ``(*ait async for ait in aits())`` is

0 commit comments

Comments
 (0)