Unicode arrows (#26965)

This commit is contained in:
Arnout Engelen 2019-05-21 13:35:11 +02:00 committed by GitHub
parent 9f76d55c2b
commit 4ac513a523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 56 additions and 55 deletions

View file

@ -300,7 +300,7 @@ object Source {
* exposes [[ActorMaterializer]] which is going to be used during materialization and
* [[Attributes]] of the [[Source]] returned by this method.
*/
def setup[T, M](factory: (ActorMaterializer, Attributes) Source[T, M]): Source[T, Future[M]] =
def setup[T, M](factory: (ActorMaterializer, Attributes) => Source[T, M]): Source[T, Future[M]] =
Source.fromGraph(new SetupSourceStage(factory))
/**