aboutsummaryrefslogtreecommitdiff
path: root/docs/streaming-custom-receivers.md
diff options
context:
space:
mode:
authorKen Takagiwa <ugw.gi.world@gmail.com>2014-08-19 22:43:22 -0700
committerReynold Xin <rxin@apache.org>2014-08-19 22:43:22 -0700
commit8a74e4b2a8c7dab154b406539487cf29d578d208 (patch)
treee69e3b04365793a56513e0c25461c39b6728c495 /docs/streaming-custom-receivers.md
parentebcb94f701273b56851dade677e047388a8bca09 (diff)
downloadspark-8a74e4b2a8c7dab154b406539487cf29d578d208.tar.gz
spark-8a74e4b2a8c7dab154b406539487cf29d578d208.tar.bz2
spark-8a74e4b2a8c7dab154b406539487cf29d578d208.zip
[DOCS] Fixed wrong links
Author: Ken Takagiwa <ugw.gi.world@gmail.com> Closes #2042 from giwa/patch-1 and squashes the following commits: 216fe0e [Ken Takagiwa] Fixed wrong links
Diffstat (limited to 'docs/streaming-custom-receivers.md')
-rw-r--r--docs/streaming-custom-receivers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/streaming-custom-receivers.md b/docs/streaming-custom-receivers.md
index 1e045a3dd0..27cd085782 100644
--- a/docs/streaming-custom-receivers.md
+++ b/docs/streaming-custom-receivers.md
@@ -186,7 +186,7 @@ JavaDStream<String> words = lines.flatMap(new FlatMapFunction<String, String>()
...
{% endhighlight %}
-The full source code is in the example [JavaCustomReceiver.java](https://github.com/apache/spark/blob/master/examples/src/main/java/org/apache/spark/streaming/examples/JavaCustomReceiver.java).
+The full source code is in the example [JavaCustomReceiver.java](https://github.com/apache/spark/blob/master/examples/src/main/java/org/apache/spark/examples/streaming/JavaCustomReceiver.java).
</div>
</div>
@@ -215,7 +215,7 @@ And a new input stream can be created with this custom actor as
val lines = ssc.actorStream[String](Props(new CustomActor()), "CustomReceiver")
{% endhighlight %}
-See [ActorWordCount.scala](https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/streaming/examples/ActorWordCount.scala)
+See [ActorWordCount.scala](https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/examples/streaming/ActorWordCount.scala)
for an end-to-end example.