Skip to content

Commit

Permalink
Documentation consistency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feynman Liang committed Aug 25, 2015
1 parent 1dbffba commit 24d166b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ class SQLContext(@transient val sparkContext: SparkContext)

/**
* :: Experimental ::
* Creates a DataFrame from an RDD of case classes.
* Creates a DataFrame from an RDD of Product (e.g. case classes, tuples).
*
* @group dataframes
* @since 1.3.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private[sql] abstract class SQLImplicits {
implicit def symbolToColumn(s: Symbol): ColumnName = new ColumnName(s.name)

/**
* Creates a DataFrame from an RDD of case classes or tuples.
* Creates a DataFrame from an RDD of Product (e.g. case classes, tuples).
* @since 1.3.0
*/
implicit def rddToDataFrameHolder[A <: Product : TypeTag](rdd: RDD[A]): DataFrameHolder = {
Expand Down

0 comments on commit 24d166b

Please sign in to comment.