From 8e35c03f5136861c6dbdc8ec0dc0187d744788c3 Mon Sep 17 00:00:00 2001 From: Konrad Malawski Date: Wed, 31 Aug 2016 12:05:12 +0100 Subject: [PATCH] =doc fix getStageActor docs typo (remove "not") As follow up to https://github.com/akka/akka/pull/21323 due to CLA not signed, and released into public domain. --- akka-stream/src/main/scala/akka/stream/stage/GraphStage.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-stream/src/main/scala/akka/stream/stage/GraphStage.scala b/akka-stream/src/main/scala/akka/stream/stage/GraphStage.scala index 85a3b7e90f..269f38a41c 100644 --- a/akka-stream/src/main/scala/akka/stream/stage/GraphStage.scala +++ b/akka-stream/src/main/scala/akka/stream/stage/GraphStage.scala @@ -909,7 +909,7 @@ abstract class GraphStageLogic private[stream] (val inCount: Int, val outCount: * The messages are looped through the [[getAsyncCallback]] mechanism of [[GraphStage]] so they are safe to modify * internal state of this stage. * - * This method must not (the earliest) be called after the [[GraphStageLogic]] constructor has finished running, + * This method must (the earliest) be called after the [[GraphStageLogic]] constructor has finished running, * for example from the [[preStart]] callback the graph stage logic provides. * * Created [[StageActorRef]] to get messages and watch other actors in synchronous way.