From cb20b21d21df666f7bcb113fcd2551c33fd2371d Mon Sep 17 00:00:00 2001 From: Ignasi Marimon-Clos Date: Tue, 4 Dec 2018 15:11:53 +0100 Subject: [PATCH] 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 --- .../src/main/paradox/stream/operators/Source/cycle.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/akka-docs/src/main/paradox/stream/operators/Source/cycle.md b/akka-docs/src/main/paradox/stream/operators/Source/cycle.md index 0c75d751fe..665274cc61 100644 --- a/akka-docs/src/main/paradox/stream/operators/Source/cycle.md +++ b/akka-docs/src/main/paradox/stream/operators/Source/cycle.md @@ -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 }