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:14:03 +0100
commit7d029cb1eb6f1df1bce1a3f5784fb7ce2f981a33 (patch)
tree7282c6f080d4ba0569eb54505e35a87ea2ff1cec /docs/streaming-programming-guide.md
parente527b359037ecc7206b70d2c51f6926986c69f2c (diff)
downloadspark-7d029cb1eb6f1df1bce1a3f5784fb7ce2f981a33.tar.gz
spark-7d029cb1eb6f1df1bce1a3f5784fb7ce2f981a33.tar.bz2
spark-7d029cb1eb6f1df1bce1a3f5784fb7ce2f981a33.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 (cherry picked from commit 0358b08db85b3ee4ae70834626e7a42311bcc635) Signed-off-by: Sean Owen <sowen@cloudera.com>
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 9676894330..e2c6a1c180 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">