Skip to content

Commit ce299e4

Browse files
committed
Minor update.
1 parent ca19078 commit ce299e4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

docs/streaming-custom-receivers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ trait can be applied on any Akka actor, which allows received data to be stored
267267
{% highlight scala %}
268268
class CustomActor extends Actor with ActorHelper {
269269
def receive = {
270-
case data: String => store(data)
270+
case data: String => store(data)
271271
}
272272
}
273273
{% endhighlight %}

docs/streaming-programming-guide.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ different languages.
5151
**Note:** Python API for Spark Streaming has been introduced in Spark 1.2. It has all the DStream
5252
transformations and almost all the output operations available in Scala and Java interfaces.
5353
However, it has only support for basic sources like text files and text data over sockets.
54-
<<<<<<< HEAD
5554
APIs for additional sources, like Kafka and Flume, will be available in the future.
5655
Further information about available features in the Python API are mentioned throughout this
5756
document; look out for the tag

0 commit comments

Comments
 (0)