From f01c9a3aa0635277d90078c0b622551b64bac850 Mon Sep 17 00:00:00 2001 From: yiksanchan Date: Thu, 12 Mar 2020 09:02:14 -0700 Subject: [PATCH] add missing full stop --- akka-docs/src/main/paradox/stream/stream-flows-and-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/stream/stream-flows-and-basics.md b/akka-docs/src/main/paradox/stream/stream-flows-and-basics.md index e145d78628..6a390d3599 100644 --- a/akka-docs/src/main/paradox/stream/stream-flows-and-basics.md +++ b/akka-docs/src/main/paradox/stream/stream-flows-and-basics.md @@ -381,7 +381,7 @@ and emitting the "materialized value". An `ActorSystem` wide `Materializer` is p `SystemMaterializer` by @scala[having an implicit `ActorSystem` in scope]@java[passing the `ActorSystem` to the various `run` methods] this way there is no need to worry about the `Materializer` unless there are special requirements. -The use case that may require a custom instance of `Materializer` is when all streams materialized in an actor should be tied to the Actor lifecycle and stop if the Actor stops or crashes +The use case that may require a custom instance of `Materializer` is when all streams materialized in an actor should be tied to the Actor lifecycle and stop if the Actor stops or crashes. An important aspect of working with streams and actors is understanding a `Materializer`'s life-cycle. The materializer is bound to the lifecycle of the `ActorRefFactory` it is created from, which in practice will