Fix comment in set comprehension example (#2580)

The result should be {'a', 'b', 'c'} (not {'d', 'e', 'f'}).
This commit is contained in:
Christopher Lorton 2016-11-21 01:38:39 -08:00 committed by ven
parent ac99d3f1cb
commit e25918acab

View File

@ -550,7 +550,7 @@ filter(lambda x: x > 5, [3, 4, 5, 6, 7]) # => [6, 7]
[x for x in [3, 4, 5, 6, 7] if x > 5] # => [6, 7]
# You can construct set and dict comprehensions as well.
{x for x in 'abcddeef' if x in 'abc'} # => {'d', 'e', 'f'}
{x for x in 'abcddeef' if x in 'abc'} # => {'a', 'b', 'c'}
{x: x**2 for x in range(5)} # => {0: 0, 1: 1, 2: 4, 3: 9, 4: 16}