From 6e0b8b98f387df8a289d1045ca8e5a1a3a7e96de Mon Sep 17 00:00:00 2001 From: KAWACHI Takashi Date: Sun, 25 Sep 2016 08:24:08 +0900 Subject: [PATCH] Fixed typo in GraphInterpreter.scala (#21552) --- .../main/scala/akka/stream/impl/fusing/GraphInterpreter.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-stream/src/main/scala/akka/stream/impl/fusing/GraphInterpreter.scala b/akka-stream/src/main/scala/akka/stream/impl/fusing/GraphInterpreter.scala index dfc8fc8d6c..cea476ef47 100644 --- a/akka-stream/src/main/scala/akka/stream/impl/fusing/GraphInterpreter.scala +++ b/akka-stream/src/main/scala/akka/stream/impl/fusing/GraphInterpreter.scala @@ -316,7 +316,7 @@ object GraphInterpreter { * * From an external viewpoint, the GraphInterpreter takes an assembly of graph processing stages encoded as a * [[GraphInterpreter#GraphAssembly]] object and provides facilities to execute and interact with this assembly. - * The lifecylce of the Interpreter is roughly the following: + * The lifecycle of the Interpreter is roughly the following: * - Boundary logics are attached via [[attachDownstreamBoundary()]] and [[attachUpstreamBoundary()]] * - [[init()]] is called * - [[execute()]] is called whenever there is need for execution, providing an upper limit on the processed events