diff --git a/README.md b/README.md index 69c2166..7d9bc5d 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ from itertools import count, repeat, cycle, chain, islice ``` ```python - = chain(, [, ...]) # Empties collections in order. + = chain(, [, ...]) # Empties collections in order. = chain.from_iterable() # Empties collections inside a collection in order. ``` diff --git a/index.html b/index.html index 4ed0d9d..f2a9349 100644 --- a/index.html +++ b/index.html @@ -352,7 +352,7 @@ to_exclusive = <range>.stop <iter> = repeat(<el> [, times]) # Returns element endlessly or 'times' times. <iter> = cycle(<collection>) # Repeats the sequence indefinitely. -
<iter> = chain(<coll.>, <coll.> [, ...])    # Empties collections in order.
+
<iter> = chain(<coll_1>, <coll_2> [, ...])  # Empties collections in order.
 <iter> = chain.from_iterable(<collection>)  # Empties collections inside a collection in order.
 
<iter> = islice(<collection>, to_exclusive)