diff --git a/README.md b/README.md index d53df1c..6869309 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,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 5ab0133..0a87f2b 100644 --- a/index.html +++ b/index.html @@ -283,7 +283,7 @@ Point(x=1, y=2 <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.>, <coll.> [, ...])    # Empties collections in order.
 <iter> = chain.from_iterable(<collection>)  # Empties collections inside a collection in order.
 
<iter> = islice(<collection>, to_exclusive)