Skip to content

Commit 137c230

Browse files
committed
Map
1 parent 7d91e7c commit 137c230

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ for i in range(10):
501501
```python
502502
from functools import reduce
503503
<iter> = map(lambda x: x + 1, range(10)) # (1, 2, ..., 10)
504-
<iter> = filter(lambda x: x > 5, range(10)) # (6, 7, ..., 9)
504+
<iter> = filter(lambda x: x > 5, range(10)) # (6, 7, 8, 9)
505505
<int> = reduce(lambda out, x: out + x, range(10)) # 45
506506
```
507507

0 commit comments

Comments
 (0)