=doc fixes for Akka Streams quick start guide

This commit is contained in:
Heiko Seeberger 2014-12-25 11:33:42 +01:00
parent ea389e16ed
commit db44791a58
5 changed files with 13 additions and 17 deletions

View file

@ -23,7 +23,7 @@ class ReactiveStreamsDocSpec extends AkkaSpec {
trait Fixture {
//#authors
val authors = Flow[Tweet]
.filter(_.hashtags.contains(Akka))
.filter(_.hashtags.contains(akka))
.map(_.author)
//#authors