From 063f37d957ec75bc41cb2cc1b478244d8e5171c1 Mon Sep 17 00:00:00 2001 From: prascuna Date: Sun, 20 Mar 2016 17:15:26 +0000 Subject: [PATCH] Fix type of tweets Source #authors-filter-map won't compile otherwise --- .../scala/code/docs/stream/TwitterStreamQuickstartDocSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/rst/scala/code/docs/stream/TwitterStreamQuickstartDocSpec.scala b/akka-docs/rst/scala/code/docs/stream/TwitterStreamQuickstartDocSpec.scala index 388e161b8f..a158949d18 100644 --- a/akka-docs/rst/scala/code/docs/stream/TwitterStreamQuickstartDocSpec.scala +++ b/akka-docs/rst/scala/code/docs/stream/TwitterStreamQuickstartDocSpec.scala @@ -55,7 +55,7 @@ class TwitterStreamQuickstartDocSpec extends AkkaSpec { trait Example0 { //#tweet-source - val tweets: Source[Tweet, Unit] + val tweets: Source[Tweet, NotUsed] //#tweet-source }