aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCrazyJvm <crazyjvm@gmail.com>2014-12-05 13:42:13 -0800
committerReynold Xin <rxin@databricks.com>2014-12-05 13:44:09 -0800
commit11446a6488fa95aca75e94f8fbecea80dc8f5331 (patch)
treedcf9ba168b75a3e56590b20fbd4b5989e36b27b3 /docs
parente8d8077bfc3e667a61dc261d2bee80d2a9f1eed3 (diff)
downloadspark-11446a6488fa95aca75e94f8fbecea80dc8f5331.tar.gz
spark-11446a6488fa95aca75e94f8fbecea80dc8f5331.tar.bz2
spark-11446a6488fa95aca75e94f8fbecea80dc8f5331.zip
Streaming doc : do you mean inadvertently?
Author: CrazyJvm <crazyjvm@gmail.com> Closes #3620 from CrazyJvm/streaming-foreachRDD and squashes the following commits: b72886b [CrazyJvm] do you mean inadvertently? (cherry picked from commit 6eb1b6f6204ea3c8083af3fb9cd990d9f3dac89d) Signed-off-by: Reynold Xin <rxin@databricks.com>
Diffstat (limited to 'docs')
-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 44a1f3ad75..5ebe834a32 100644
--- a/docs/streaming-programming-guide.md
+++ b/docs/streaming-programming-guide.md
@@ -1081,7 +1081,7 @@ Some of the common mistakes to avoid are as follows.
- Often writing data to external system requires creating a connection object
(e.g. TCP connection to a remote server) and using it to send data to a remote system.
-For this purpose, a developer may inadvertantly try creating a connection object at
+For this purpose, a developer may inadvertently try creating a connection object at
the Spark driver, but try to use it in a Spark worker to save records in the RDDs.
For example (in Scala),