Reorder Source/FlowWithContext type parameters #26345

This commit is contained in:
Heiko Seeberger 2019-02-21 14:24:35 +01:00 committed by Johan Andrén
parent 96b72c2b7b
commit 555fe026d0
10 changed files with 83 additions and 78 deletions

View file

@ -220,7 +220,7 @@ final class Source[+Out, +Mat](
* API MAY CHANGE
*/
@ApiMayChange
def startContextPropagation[Ctx](f: Out Ctx): SourceWithContext[Ctx, Out, Mat] = new SourceWithContext(this.map(e (e, f(e))))
def startContextPropagation[Ctx](f: Out Ctx): SourceWithContext[Out, Ctx, Mat] = new SourceWithContext(this.map(e (e, f(e))))
}
object Source {