aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStevo Slavić <sslavic@gmail.com>2014-02-04 09:45:46 -0800
committerReynold Xin <rxin@apache.org>2014-02-04 09:45:46 -0800
commit0c05cd374dac309b5444980f10f8dcb820c752c2 (patch)
tree98880f8d36e20720ac3a836ddcfb6e7c36990526
parent23af00f9e0e5108f62cdb9629e3eb4e54bbaa321 (diff)
downloadspark-0c05cd374dac309b5444980f10f8dcb820c752c2.tar.gz
spark-0c05cd374dac309b5444980f10f8dcb820c752c2.tar.bz2
spark-0c05cd374dac309b5444980f10f8dcb820c752c2.zip
Merge pull request #535 from sslavic/patch-2. Closes #535.
Fixed typo in scaladoc Author: Stevo Slavić <sslavic@gmail.com> == Merge branch commits == commit 0a77f789e281930f4168543cc0d3b3ffbf5b3764 Author: Stevo Slavić <sslavic@gmail.com> Date: Tue Feb 4 15:30:27 2014 +0100 Fixed typo in scaladoc
-rw-r--r--core/src/main/scala/org/apache/spark/Partitioner.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/org/apache/spark/Partitioner.scala b/core/src/main/scala/org/apache/spark/Partitioner.scala
index 3081f927cc..cfba43dec3 100644
--- a/core/src/main/scala/org/apache/spark/Partitioner.scala
+++ b/core/src/main/scala/org/apache/spark/Partitioner.scala
@@ -41,7 +41,7 @@ object Partitioner {
* spark.default.parallelism is set, then we'll use the value from SparkContext
* defaultParallelism, otherwise we'll use the max number of upstream partitions.
*
- * Unless spark.default.parallelism is set, He number of partitions will be the
+ * Unless spark.default.parallelism is set, the number of partitions will be the
* same as the number of partitions in the largest upstream RDD, as this should
* be least likely to cause out-of-memory errors.
*