Small wording improvements. (#26032)

* Small wording improvements.

* Update akka-docs/src/main/paradox/stream/operators/Source/cycle.md

* Update akka-docs/src/main/paradox/stream/operators/Source/cycle.md
This commit is contained in:
Ignasi Marimon-Clos 2018-12-04 15:11:53 +01:00 committed by Patrik Nordwall
parent ee41f55754
commit cb20b21d21

View file

@ -14,10 +14,10 @@ Stream iterator in cycled manner.
## Description
Stream iterator in cycled manner. Internally new iterator is being created to cycle the one provided via argument meaning
when original iterator runs out of elements process will start all over again from the beginning of the iterator
provided by the evaluation of provided parameter. If method argument provides empty iterator stream will be terminated with
exception.
Stream iterator in cycled manner. Internally a new iterator is being created to cycle the one provided via argument meaning
when the original iterator runs out of elements to process it will start all over again from the beginning of the iterator
provided by the evaluation of provided parameter. If the method argument provides an empty iterator the stream will be
terminated with an exception.
@@@div { .callout }