aboutsummaryrefslogtreecommitdiff
path: root/docs/python-programming-guide.md
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-10-09 12:08:04 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-10-09 12:08:04 -0700
commit478b2b7edcf42fa3e16f625d4b8676f2bb31f8dc (patch)
tree4e98e75485e8450fb4dd7f9cd7917e52b9910297 /docs/python-programming-guide.md
parentb4fa11f6c96ee37ecd30231c1e22630055f52115 (diff)
downloadspark-478b2b7edcf42fa3e16f625d4b8676f2bb31f8dc.tar.gz
spark-478b2b7edcf42fa3e16f625d4b8676f2bb31f8dc.tar.bz2
spark-478b2b7edcf42fa3e16f625d4b8676f2bb31f8dc.zip
Fix PySpark docs and an overly long line of code after fdbae41e
Diffstat (limited to 'docs/python-programming-guide.md')
-rw-r--r--docs/python-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/python-programming-guide.md b/docs/python-programming-guide.md
index f67a1cc49c..6c2336ad0c 100644
--- a/docs/python-programming-guide.md
+++ b/docs/python-programming-guide.md
@@ -16,7 +16,7 @@ This guide will show how to use the Spark features described there in Python.
There are a few key differences between the Python and Scala APIs:
* Python is dynamically typed, so RDDs can hold objects of multiple types.
-* PySpark does not yet support a few API calls, such as `lookup`, `sort`, and non-text input files, though these will be added in future releases.
+* PySpark does not yet support a few API calls, such as `lookup` and non-text input files, though these will be added in future releases.
In PySpark, RDDs support the same methods as their Scala counterparts but take Python functions and return Python collection types.
Short functions can be passed to RDD methods using Python's [`lambda`](http://www.diveintopython.net/power_of_introspection/lambda_functions.html) syntax: