diff --git a/akka-docs/rst/java/stream/stream-cookbook.rst b/akka-docs/rst/java/stream/stream-cookbook.rst index e757ae910f..1a673e2e78 100644 --- a/akka-docs/rst/java/stream/stream-cookbook.rst +++ b/akka-docs/rst/java/stream/stream-cookbook.rst @@ -177,7 +177,7 @@ Triggering the flow of elements programmatically In other words, even if the stream would be able to flow (not being backpressured) we want to hold back elements until a trigger signal arrives. -This recipe solves the problem by simply zipping the stream of ``Message`` elments with the stream of ``Trigger`` +This recipe solves the problem by simply zipping the stream of ``Message`` elements with the stream of ``Trigger`` signals. Since ``Zip`` produces pairs, we simply map the output stream selecting the first element of the pair. .. includecode:: ../code/docs/stream/javadsl/cookbook/RecipeManualTrigger.java#manually-triggered-stream @@ -227,7 +227,7 @@ a special ``reduce`` operation that collapses multiple upstream elements into on the speed of the upstream unaffected by the downstream. When the upstream is faster, the reducing process of the ``conflate`` starts. Our reducer function simply takes -the freshest element. This cin a simple dropping operation. +the freshest element. This in a simple dropping operation. .. includecode:: ../code/docs/stream/javadsl/cookbook/RecipeSimpleDrop.java#simple-drop diff --git a/akka-docs/rst/java/stream/stream-introduction.rst b/akka-docs/rst/java/stream/stream-introduction.rst index 6605e2668a..f403ffee98 100644 --- a/akka-docs/rst/java/stream/stream-introduction.rst +++ b/akka-docs/rst/java/stream/stream-introduction.rst @@ -7,7 +7,7 @@ Introduction Motivation ========== -The way we consume services from the internet today includes many instances of +The way we consume services from the Internet today includes many instances of streaming data, both downloading from a service as well as uploading to it or peer-to-peer data transfers. Regarding data as a stream of elements instead of in its entirety is very useful because it matches the way computers send and diff --git a/akka-docs/rst/scala/stream/stream-cookbook.rst b/akka-docs/rst/scala/stream/stream-cookbook.rst index 94ba97ad3a..b2a599371d 100644 --- a/akka-docs/rst/scala/stream/stream-cookbook.rst +++ b/akka-docs/rst/scala/stream/stream-cookbook.rst @@ -173,7 +173,7 @@ Triggering the flow of elements programmatically In other words, even if the stream would be able to flow (not being backpressured) we want to hold back elements until a trigger signal arrives. -This recipe solves the problem by simply zipping the stream of ``Message`` elments with the stream of ``Trigger`` +This recipe solves the problem by simply zipping the stream of ``Message`` elements with the stream of ``Trigger`` signals. Since ``Zip`` produces pairs, we simply map the output stream selecting the first element of the pair. .. includecode:: ../code/docs/stream/cookbook/RecipeManualTrigger.scala#manually-triggered-stream @@ -222,7 +222,7 @@ a special ``reduce`` operation that collapses multiple upstream elements into on the speed of the upstream unaffected by the downstream. When the upstream is faster, the reducing process of the ``conflate`` starts. Our reducer function simply takes -the freshest element. This cin a simple dropping operation. +the freshest element. This in a simple dropping operation. .. includecode:: ../code/docs/stream/cookbook/RecipeSimpleDrop.scala#simple-drop diff --git a/akka-docs/rst/scala/stream/stream-introduction.rst b/akka-docs/rst/scala/stream/stream-introduction.rst index 064cd46890..177cc294aa 100644 --- a/akka-docs/rst/scala/stream/stream-introduction.rst +++ b/akka-docs/rst/scala/stream/stream-introduction.rst @@ -7,7 +7,7 @@ Introduction Motivation ========== -The way we consume services from the internet today includes many instances of +The way we consume services from the Internet today includes many instances of streaming data, both downloading from a service as well as uploading to it or peer-to-peer data transfers. Regarding data as a stream of elements instead of in its entirety is very useful because it matches the way computers send and