Remove explicit outlet selector from graph docs (#24852)

This commit is contained in:
Justin Pihony 2018-04-06 02:11:24 -04:00 committed by Konrad `ktoso` Malawski
parent 546cf15234
commit dd884117c1

View file

@ -81,8 +81,8 @@ class GraphDSLDocSpec extends AkkaSpec {
val broadcast = builder.add(Broadcast[Int](2))
Source.single(1) ~> broadcast.in
broadcast.out(0) ~> sharedDoubler ~> topHS.in
broadcast.out(1) ~> sharedDoubler ~> bottomHS.in
broadcast ~> sharedDoubler ~> topHS.in
broadcast ~> sharedDoubler ~> bottomHS.in
ClosedShape
})
//#graph-dsl-reusing-a-flow