From 190ab3f0e7bddb70e15e12dfd6e4eff5df5781a8 Mon Sep 17 00:00:00 2001 From: SageM Date: Wed, 9 Oct 2019 21:48:08 -0700 Subject: [PATCH] Fix wording Update akka-docs/src/main/paradox/stream/stream-parallelism.md Co-Authored-By: Helena Edelson --- akka-docs/src/main/paradox/stream/stream-parallelism.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/src/main/paradox/stream/stream-parallelism.md b/akka-docs/src/main/paradox/stream/stream-parallelism.md index f7a88123d5..5b44054e72 100644 --- a/akka-docs/src/main/paradox/stream/stream-parallelism.md +++ b/akka-docs/src/main/paradox/stream/stream-parallelism.md @@ -80,9 +80,9 @@ The benefit of parallelizing is that it is easy to scale. In the pancake example it is easy to add a third frying pan with Patrik's method, but Roland cannot add a third frying pan, since that would require a third processing step, which is not practically possible in the case of frying pancakes. -One drawback of the example code above that it does not preserve the ordering of pancakes. This might be a problem +One drawback of the example code above is it does not preserve the ordering of pancakes. This might be a problem if children like to track their "own" pancakes. In those cases the `Balance` and `Merge` operators should be replaced -by strict-round robing balancing and merging operators that put in and take out pancakes in a strict order. +by round-robin balancing and merging operators which put in and take out pancakes in a strict order. A more detailed example of creating a worker pool can be found in the cookbook: @ref:[Balancing jobs to a fixed pool of workers](stream-cookbook.md#cookbook-balance)