From e7347ffee4cac93763e8a225c3dbf9d4ae7f5e6c Mon Sep 17 00:00:00 2001 From: J Evans <10482250+jayeve@users.noreply.github.com> Date: Mon, 15 Oct 2018 14:13:07 -0700 Subject: [PATCH] grammar nit (#25791) --- akka-docs/src/main/paradox/stream/stream-rate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/stream/stream-rate.md b/akka-docs/src/main/paradox/stream/stream-rate.md index c5757ef578..134700216d 100644 --- a/akka-docs/src/main/paradox/stream/stream-rate.md +++ b/akka-docs/src/main/paradox/stream/stream-rate.md @@ -46,7 +46,7 @@ C: 3 Note that the order is *not* `A:1, B:1, C:1, A:2, B:2, C:2,` which would correspond to the normal fused synchronous execution model of flows where an element completely passes through the processing pipeline before the next element -enters the flow. The next element is processed by an asynchronous operator as soon as it is emitted the previous one. +enters the flow. The next element is processed by an asynchronous operator as soon as it has emitted the previous one. While pipelining in general increases throughput, in practice there is a cost of passing an element through the asynchronous (and therefore thread crossing) boundary which is significant. To amortize this cost Akka Streams uses