=str fixes wrong / missing cross references in scaladoc

This commit is contained in:
Tim Harper 2015-11-23 01:01:32 -07:00 committed by Tim Harper
parent ce2d666c06
commit d1e5dbb8bb
2 changed files with 4 additions and 1 deletions

View file

@ -799,6 +799,8 @@ final class Flow[-In, +Out, +Mat](delegate: scaladsl.Flow[In, Out, Mat]) extends
* '''Completes when''' upstream completes
*
* '''Cancels when''' downstream cancels and substreams cancel
*
* See also [[Flow.splitAfter]].
*/
def splitWhen(p: function.Predicate[Out]): javadsl.Flow[In, Source[Out, Unit], Mat] =
new Flow(delegate.splitWhen(p.test).map(_.asJava))