From 683868f9feedf20bd50e17447548a3c8d5913ecf Mon Sep 17 00:00:00 2001 From: yiksanchan Date: Wed, 6 May 2020 10:30:28 -0700 Subject: [PATCH] Improve grammar (#29007) --- akka-docs/src/main/paradox/stream/stream-customize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/stream/stream-customize.md b/akka-docs/src/main/paradox/stream/stream-customize.md index 081ff7c89f..c06caec49b 100644 --- a/akka-docs/src/main/paradox/stream/stream-customize.md +++ b/akka-docs/src/main/paradox/stream/stream-customize.md @@ -35,7 +35,7 @@ smaller ones, and allows state to be maintained inside it in a safe way. As a first motivating example, we will build a new `Source` that will emit numbers from 1 until it is cancelled. To start, we need to define the "interface" of our operator, which is called *shape* in Akka Streams terminology -(this is explained in more detail in the section @ref:[Modularity, Composition and Hierarchy](stream-composition.md)). This is how this looks like: +(this is explained in more detail in the section @ref:[Modularity, Composition and Hierarchy](stream-composition.md)). This is how it looks: Scala : @@snip [GraphStageDocSpec.scala](/akka-docs/src/test/scala/docs/stream/GraphStageDocSpec.scala) { #boilerplate-example }