aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJeff Thompson <jeffreykeatingthompson@gmail.com>2014-06-12 08:10:51 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-06-12 08:10:51 -0700
commit43d53d51c9ee2626d9de91faa3b192979b86821d (patch)
tree2cb137170bf0f4914e76348feb28589165b427b6 /python
parent4d8ae709fb8d986634c97d21036391ed4685db1a (diff)
downloadspark-43d53d51c9ee2626d9de91faa3b192979b86821d.tar.gz
spark-43d53d51c9ee2626d9de91faa3b192979b86821d.tar.bz2
spark-43d53d51c9ee2626d9de91faa3b192979b86821d.zip
fixed typo in docstring for min()
Hi, I found this typo while learning spark and thought I'd do a pull request. Author: Jeff Thompson <jeffreykeatingthompson@gmail.com> Closes #1065 from jkthompson/docstring-typo-minmax and squashes the following commits: 29b6a26 [Jeff Thompson] fixed typo in docstring for min()
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/rdd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/rdd.py b/python/pyspark/rdd.py
index 9c69c79236..8a215fc511 100644
--- a/python/pyspark/rdd.py
+++ b/python/pyspark/rdd.py
@@ -695,7 +695,7 @@ class RDD(object):
def min(self):
"""
- Find the maximum item in this RDD.
+ Find the minimum item in this RDD.
>>> sc.parallelize([1.0, 5.0, 43.0, 10.0]).min()
1.0