Repository: spark Updated Branches: refs/heads/master a432a2b86 -> b28137764
[MINOR][SQL] Fix typo in DataFrameReader csv documentation ## What changes were proposed in this pull request? Typo fix ## How was this patch tested? No tests My apologies for the tiny PR, but I stumbled across this today and wanted to get it corrected for 2.0. Author: sethah <seth.hendrickso...@gmail.com> Closes #12912 from sethah/csv_typo. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b2813776 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/b2813776 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/b2813776 Branch: refs/heads/master Commit: b28137764716f56fa1a923c4278624a56364a505 Parents: a432a2b Author: sethah <seth.hendrickso...@gmail.com> Authored: Wed May 4 16:46:13 2016 -0700 Committer: Andrew Or <and...@databricks.com> Committed: Wed May 4 16:46:13 2016 -0700 ---------------------------------------------------------------------- sql/core/src/main/scala/org/apache/spark/sql/DataFrameReader.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/b2813776/sql/core/src/main/scala/org/apache/spark/sql/DataFrameReader.scala ---------------------------------------------------------------------- diff --git a/sql/core/src/main/scala/org/apache/spark/sql/DataFrameReader.scala b/sql/core/src/main/scala/org/apache/spark/sql/DataFrameReader.scala index 2d4a68f..5bf696c 100644 --- a/sql/core/src/main/scala/org/apache/spark/sql/DataFrameReader.scala +++ b/sql/core/src/main/scala/org/apache/spark/sql/DataFrameReader.scala @@ -407,7 +407,7 @@ class DataFrameReader private[sql](sparkSession: SparkSession) extends Logging { * <li>`header` (default `false`): uses the first line as names of columns.</li> * <li>`ignoreLeadingWhiteSpace` (default `false`): defines whether or not leading whitespaces * from values being read should be skipped.</li> - * <li>`ignoreTrailingWhiteSpace` (default `fDataFraalse`): defines whether or not trailing + * <li>`ignoreTrailingWhiteSpace` (default `false`): defines whether or not trailing * whitespaces from values being read should be skipped.</li> * <li>`nullValue` (default empty string): sets the string representation of a null value.</li> * <li>`nanValue` (default `NaN`): sets the string representation of a non-number" value.</li> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org