aboutsummaryrefslogtreecommitdiff
path: root/docs/streaming-programming-guide.md
diff options
context:
space:
mode:
authorjayson <jayson@ziprecruiter.com>2015-04-01 11:12:55 +0100
committerSean Owen <sowen@cloudera.com>2015-04-01 11:12:55 +0100
commit0358b08db85b3ee4ae70834626e7a42311bcc635 (patch)
treef31e3a77222f85711bd4d07010e6909aa8ea3dba /docs/streaming-programming-guide.md
parentd824c11c9fe8af1ca1d7c694b2fb81289eb83f97 (diff)
downloadspark-0358b08db85b3ee4ae70834626e7a42311bcc635.tar.gz
spark-0358b08db85b3ee4ae70834626e7a42311bcc635.tar.bz2
spark-0358b08db85b3ee4ae70834626e7a42311bcc635.zip
SPARK-6626 [DOCS]: Corrected Scala:TwitterUtils parameters
Per Sean Owen's request, here is the update call for TwitterUtils using Scala :) Author: jayson <jayson@ziprecruiter.com> Closes #5295 from JaysonSunshine/master and squashes the following commits: df1d056 [jayson] Corrected Scala:TwitterUtils parameters
Diffstat (limited to 'docs/streaming-programming-guide.md')
-rw-r--r--docs/streaming-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/streaming-programming-guide.md b/docs/streaming-programming-guide.md
index 6d6229625f..262512a639 100644
--- a/docs/streaming-programming-guide.md
+++ b/docs/streaming-programming-guide.md
@@ -704,7 +704,7 @@ create a DStream using data from Twitter's stream of tweets, you have to do the
{% highlight scala %}
import org.apache.spark.streaming.twitter._
-TwitterUtils.createStream(ssc)
+TwitterUtils.createStream(ssc, None)
{% endhighlight %}
</div>
<div data-lang="java">