Skip to content

Commit fbd66a5

Browse files
CrazyJvmtdas
authored andcommitted
Merge pull request #579 from CrazyJvm/patch-1.
"in the source DStream" rather than "int the source DStream" "flatMap is a one-to-many DStream operation that creates a new DStream by generating multiple new records from each record int the source DStream." Author: Chen Chao <[email protected]> Closes #579 and squashes the following commits: 4abcae3 [Chen Chao] in the source DStream
1 parent a4eef65 commit fbd66a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/streaming-programming-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ val words = lines.flatMap(_.split(" "))
8888
{% endhighlight %}
8989

9090
`flatMap` is a one-to-many DStream operation that creates a new DStream by
91-
generating multiple new records from each record int the source DStream. In this case,
91+
generating multiple new records from each record in the source DStream. In this case,
9292
each line will be split into multiple words and the stream of words is represented as the
9393
`words` DStream. Next, we want to count these words.
9494

0 commit comments

Comments
 (0)