Skip to content

Commit c0d9170

Browse files
committed
Itertools
1 parent 03cfac3 commit c0d9170

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
@@ -236,8 +236,8 @@ from itertools import islice, count, repeat, cycle, chain
236236

237237
```python
238238
<iter> = count(start=0, step=1) # Counter.
239-
<iter> = repeat(<el> [, times]) # Returns element endlesly or times times.
240-
<iter> = cycle(<collection>) # Repeats the sequence indefinately.
239+
<iter> = repeat(<el> [, times]) # Returns element endlessly or times times.
240+
<iter> = cycle(<collection>) # Repeats the sequence indefinitely.
241241
```
242242

243243
```python

0 commit comments

Comments
 (0)