aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMatei Zaharia <matei.zaharia@gmail.com>2013-09-08 10:33:20 -0700
committerMatei Zaharia <matei.zaharia@gmail.com>2013-09-08 10:33:20 -0700
commit04cfb3aa9d0cbd49af7d117f74ff75865c7b4f7a (patch)
treef2d98b7e3825aeafadfaaef7037fb912bfa7c9ce /core
parent38488aca8a67d5d2749b82e3fd5f3dc50873d09a (diff)
parenta3868544be9fe74ea925016d125a5e9f61eeb902 (diff)
downloadspark-04cfb3aa9d0cbd49af7d117f74ff75865c7b4f7a.tar.gz
spark-04cfb3aa9d0cbd49af7d117f74ff75865c7b4f7a.tar.bz2
spark-04cfb3aa9d0cbd49af7d117f74ff75865c7b4f7a.zip
Merge pull request #898 from ilikerps/660
SPARK-660: Add StorageLevel support in Python
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/org/apache/spark/storage/StorageLevel.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/main/scala/org/apache/spark/storage/StorageLevel.scala b/core/src/main/scala/org/apache/spark/storage/StorageLevel.scala
index 755f1a760e..632ff047d1 100644
--- a/core/src/main/scala/org/apache/spark/storage/StorageLevel.scala
+++ b/core/src/main/scala/org/apache/spark/storage/StorageLevel.scala
@@ -23,9 +23,9 @@ import java.io.{Externalizable, IOException, ObjectInput, ObjectOutput}
* Flags for controlling the storage of an RDD. Each StorageLevel records whether to use memory,
* whether to drop the RDD to disk if it falls out of memory, whether to keep the data in memory
* in a serialized format, and whether to replicate the RDD partitions on multiple nodes.
- * The [[org.apache.spark.storage.StorageLevel$]] singleton object contains some static constants for
- * commonly useful storage levels. To create your own storage level object, use the factor method
- * of the singleton object (`StorageLevel(...)`).
+ * The [[org.apache.spark.storage.StorageLevel$]] singleton object contains some static constants
+ * for commonly useful storage levels. To create your own storage level object, use the
+ * factory method of the singleton object (`StorageLevel(...)`).
*/
class StorageLevel private(
private var useDisk_ : Boolean,