Skip to content

Commit 43d53d5

Browse files
jkthompsonpwendell
authored andcommitted
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 <[email protected]> Closes apache#1065 from jkthompson/docstring-typo-minmax and squashes the following commits: 29b6a26 [Jeff Thompson] fixed typo in docstring for min()
1 parent 4d8ae70 commit 43d53d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/rdd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def max(self):
695695

696696
def min(self):
697697
"""
698-
Find the maximum item in this RDD.
698+
Find the minimum item in this RDD.
699699
700700
>>> sc.parallelize([1.0, 5.0, 43.0, 10.0]).min()
701701
1.0

0 commit comments

Comments
 (0)