Merge pull request #17013 from akka/wip-str-scaladoc-patriknw

=str Fix some scaladoc
This commit is contained in:
Patrik Nordwall 2015-03-06 15:59:21 +01:00
commit 9ea08e0743
16 changed files with 37 additions and 48 deletions

View file

@ -129,8 +129,8 @@ final class Flow[-In, +Out, +Mat](private[stream] override val module: Module)
/**
* Connect the `Source` to this `Flow` and then connect it to the `Sink` and run it. The returned tuple contains
* the materialized values of the `Source` and `Sink`, e.g. the `Subscriber` of a [[SubscriberSource]] and
* and `Publisher` of a [[PublisherSink]].
* the materialized values of the `Source` and `Sink`, e.g. the `Subscriber` of a of a [[Source#subscriber]] and
* and `Publisher` of a [[Sink#publisher]].
*/
def runWith[Mat1, Mat2](source: Source[In, Mat1], sink: Sink[Out, Mat2])(implicit materializer: FlowMaterializer): (Mat1, Mat2) = {
source.via(this).toMat(sink)(Keep.both).run()