diff --git a/README.md b/README.md index ba98875..f3de31f 100644 --- a/README.md +++ b/README.md @@ -236,8 +236,8 @@ from itertools import islice, count, repeat, cycle, chain ```python = count(start=0, step=1) # Counter. - = repeat( [, times]) # Returns element endlesly or times times. - = cycle() # Repeats the sequence indefinately. + = repeat( [, times]) # Returns element endlessly or times times. + = cycle() # Repeats the sequence indefinitely. ``` ```python