replace unicode arrows

* ⇒, →, ←
* because we don't want to show them in documentation snippets and
  then it's complicated to avoid that when snippets are
  located in src/test/scala in individual modules
* dont replace object `→` in FSM.scala and PersistentFSM.scala
This commit is contained in:
Patrik Nordwall 2019-02-09 15:25:39 +01:00
parent e4d38f92a4
commit 5c96a5f556
1521 changed files with 18846 additions and 18786 deletions

View file

@ -34,7 +34,7 @@ class GraphMergeLatestSpec extends TwoStreamsSetup {
val up3 = TestSource.probe[Int]
val probe = TestSubscriber.manualProbe[List[Int]]()
val (in1, in2, in3) = RunnableGraph.fromGraph(GraphDSL.create(up1, up2, up3)((_, _, _)) { implicit b (s1, s2, s3)
val (in1, in2, in3) = RunnableGraph.fromGraph(GraphDSL.create(up1, up2, up3)((_, _, _)) { implicit b => (s1, s2, s3) =>
val m = b.add(MergeLatest[Int](3))
s1 ~> m
@ -66,7 +66,7 @@ class GraphMergeLatestSpec extends TwoStreamsSetup {
val up3 = TestSource.probe[Int]
val probe = TestSubscriber.manualProbe[List[Int]]()
val (in1, in2, in3) = RunnableGraph.fromGraph(GraphDSL.create(up1, up2, up3)((_, _, _)) { implicit b (s1, s2, s3)
val (in1, in2, in3) = RunnableGraph.fromGraph(GraphDSL.create(up1, up2, up3)((_, _, _)) { implicit b => (s1, s2, s3) =>
val m = b.add(MergeLatest[Int](3))
s1 ~> m
@ -111,7 +111,7 @@ class GraphMergeLatestSpec extends TwoStreamsSetup {
}
"work with one-way merge" in {
val result = Source.fromGraph(GraphDSL.create() { implicit b
val result = Source.fromGraph(GraphDSL.create() { implicit b =>
val merge = b.add(MergeLatest[Int](1))
val source = b.add(Source(1 to 3))
@ -127,7 +127,7 @@ class GraphMergeLatestSpec extends TwoStreamsSetup {
val up2 = TestSource.probe[Int]
val probe = TestSubscriber.manualProbe[List[Int]]()
val (in1, in2) = RunnableGraph.fromGraph(GraphDSL.create(up1, up2)((_, _)) { implicit b (s1, s2)
val (in1, in2) = RunnableGraph.fromGraph(GraphDSL.create(up1, up2)((_, _)) { implicit b => (s1, s2) =>
val m = b.add(MergeLatest[Int](2, true))
s1 ~> m