aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Hao <hao.cheng@intel.com>2015-02-22 08:56:30 +0000
committerSean Owen <sowen@cloudera.com>2015-02-22 08:56:30 +0000
commit275b1bef897d775f1f7743378ca3e09e36160136 (patch)
treeb058466fa4db221c501792d8f0aa48daa1ebff28
parenta7f90390251ff62a0e10edf4c2eb876538597791 (diff)
downloadspark-275b1bef897d775f1f7743378ca3e09e36160136.tar.gz
spark-275b1bef897d775f1f7743378ca3e09e36160136.tar.bz2
spark-275b1bef897d775f1f7743378ca3e09e36160136.zip
[DataFrame] [Typo] Fix the typo
Author: Cheng Hao <hao.cheng@intel.com> Closes #4717 from chenghao-intel/typo1 and squashes the following commits: 858d7b0 [Cheng Hao] update the typo
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala b/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
index 810f7c7747..69e5f6a07d 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
@@ -138,7 +138,7 @@ class DataFrame protected[sql](
/**
* An implicit conversion function internal to this class for us to avoid doing
- * "new DataFrameImpl(...)" everywhere.
+ * "new DataFrame(...)" everywhere.
*/
@inline private implicit def logicalPlanToDataFrame(logicalPlan: LogicalPlan): DataFrame = {
new DataFrame(sqlContext, logicalPlan)