diff --git a/README.md b/README.md index 70be1fb..9f965e5 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ from itertools import count, repeat, cycle, chain, islice ```python = count(start=0, step=1) # Returns incremented value endlessly. = repeat( [, times]) # Returns element endlessly or 'times' times. - = cycle() # Repeats the sequence indefinitely. + = cycle() # Repeats the sequence endlessly. ``` ```python diff --git a/index.html b/index.html index d7d12e7..72b50d8 100644 --- a/index.html +++ b/index.html @@ -350,7 +350,7 @@ to_exclusive = <range>.stop
<iter> = count(start=0, step=1)             # Returns incremented value endlessly.
 <iter> = repeat(<el> [, times])             # Returns element endlessly or 'times' times.
-<iter> = cycle(<collection>)                # Repeats the sequence indefinitely.
+<iter> = cycle(<collection>)                # Repeats the sequence endlessly.
 
<iter> = chain(<coll_1>, <coll_2> [, ...])  # Empties collections in order.
 <iter> = chain.from_iterable(<collection>)  # Empties collections inside a collection in order.