From 8c71fedef0d1bd1ac3356fa19704d83ebef11352 Mon Sep 17 00:00:00 2001 From: Evgenii Ganchurin Date: Tue, 5 May 2020 11:42:48 +0300 Subject: [PATCH] Minor fix: replaced "terminated" to "constructed" (#29011) --- 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 6a390d3599..34eb239e0b 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 @@ -77,7 +77,7 @@ RunnableGraph It is possible to attach a `Flow` to a `Source` resulting in a composite source, and it is also possible to prepend -a `Flow` to a `Sink` to get a new sink. After a stream is properly terminated by having both a source and a sink, +a `Flow` to a `Sink` to get a new sink. After a stream is properly constructed by having both a source and a sink, it will be represented by the `RunnableGraph` type, indicating that it is ready to be executed. It is important to remember that even after constructing the `RunnableGraph` by connecting all the source, sink and