diff --git a/akka-docs/src/main/paradox/stream/stream-parallelism.md b/akka-docs/src/main/paradox/stream/stream-parallelism.md index 5f377f3c02..d2f611c705 100644 --- a/akka-docs/src/main/paradox/stream/stream-parallelism.md +++ b/akka-docs/src/main/paradox/stream/stream-parallelism.md @@ -84,7 +84,7 @@ it is easy to add a third frying pan with Patrik's method, but Roland cannot add 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 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 +if children like to track their "own" pancakes. In those cases the @apidoc[akka.stream.*.Balance$] and @apidoc[akka.stream.*.Merge$] operators should be replaced 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)