Skip to content

Commit 9efe21f

Browse files
committed
Iterators
1 parent 295f57c commit 9efe21f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ Itertools
934934
from itertools import *
935935
```
936936

937-
### Combinatoric Iterators
937+
### Combinatoric iterators
938938
```python
939939
>>> combinations('abc', 2)
940940
[('a', 'b'), ('a', 'c'), ('b', 'c')]
@@ -958,7 +958,7 @@ from itertools import *
958958
(1, 0, 0), (1, 0, 1), (1, 1, 0), (1, 1, 1)]
959959
```
960960

961-
### Infinite Iterators
961+
### Infinite iterators
962962
```python
963963
>>> i = count(5, 2)
964964
>>> next(i), next(i), next(i)

0 commit comments

Comments
 (0)