=str fix typo in scaladoc

This commit is contained in:
Konrad Malawski 2015-12-22 19:49:09 +01:00
parent ddceadff7b
commit 3975ac3281
2 changed files with 4 additions and 4 deletions

View file

@ -137,9 +137,9 @@ object Sink {
/**
* A `Sink` that keeps on collecting incoming elements until upstream terminates.
* As upstream may be unbounded, `Flow[T].take` or the stricter ``Flow[T].limit` (and their variants)
* As upstream may be unbounded, `Flow[T].take` or the stricter `Flow[T].limit` (and their variants)
* may be used to ensure boundedness.
* Materializes into a Future` of `Seq[T]` containing all the collected elements.
* Materializes into a `Future` of `Seq[T]` containing all the collected elements.
*
* See also [[Flow.limit]], [[Flow.limitWeighted]], [[Flow.take]], [[Flow.takeWithin]], [[Flow.takeWhile]]
*/