diff --git a/akka-docs-new/src/main/paradox/guide/modules.md b/akka-docs-new/src/main/paradox/guide/modules.md index 949e457796..b11955f01c 100644 --- a/akka-docs-new/src/main/paradox/guide/modules.md +++ b/akka-docs-new/src/main/paradox/guide/modules.md @@ -120,7 +120,7 @@ to implement the same pattern over and over. Very common is the scenario where a process a potentially large (or infinite) stream of sequential events and properly coordinate resource usage so that faster processing stages don’t overwhelm slower ones in the chain (or graph). Streams provide a higher-level abstraction on top of actors that simplifies writing such processing networks, handling all the fine details in the -background and providing a safe programming model. Streams is also an implementation +background and providing a safe (typed), composable programming model. Streams is also an implementation of the [Reactive Streams standard](http://www.reactive-streams.org) which enables integration with all 3rd party implementations of that standard.