From c10d03970be547dad4fe21a3f8cf29be43e96779 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Tue, 25 Apr 2017 08:07:15 -0700 Subject: [PATCH] Separate dot attributes by comma's (#22786) --- .../scala/akka/stream/impl/fusing/GraphInterpreter.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 18bf034607..066503a027 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 @@ -648,11 +648,11 @@ import scala.util.control.NonFatal builder.append(s" $inName -> $outName ") connection.portState match { case InReady ⇒ - builder.append("[label=shouldPull; color=blue];") + builder.append("[label=shouldPull, color=blue];") case OutReady ⇒ - builder.append(s"[label=shouldPush; color=red];") + builder.append(s"[label=shouldPush, color=red];") case x if (x | InClosed | OutClosed) == (InClosed | OutClosed) ⇒ - builder.append("[style=dotted; label=closed dir=both];") + builder.append("[style=dotted, label=closed, dir=both];") case _ ⇒ } builder.append("\n")