Skip to content

Commit b9aeac1

Browse files
committed
Add omitted opening tag ` and max length
1 parent 34b52fa commit b9aeac1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sql/core/src/main/scala/org/apache/spark/sql/DataFrameReader.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,9 +402,9 @@ class DataFrameReader private[sql](sparkSession: SparkSession) extends Logging {
402402
* the delimiter can be part of the value.</li>
403403
* <li>`escape` (default `\`): sets the single character used for escaping quotes inside
404404
* an already quoted value.</li>
405-
* <li>`comment` (default empty string): sets the single character used for skipping lines beginning
406-
* with this character. By default, it is disabled.</li>
407-
* <li>header` (default `false`): uses the first line as names of columns.</li>
405+
* <li>`comment` (default empty string): sets the single character used for skipping lines
406+
* beginning with this character. By default, it is disabled.</li>
407+
* <li>`header` (default `false`): uses the first line as names of columns.</li>
408408
* <li>`ignoreLeadingWhiteSpace` (default `false`): defines whether or not leading whitespaces
409409
* from values being read should be skipped.</li>
410410
* <li>`ignoreTrailingWhiteSpace` (default `fDataFraalse`): defines whether or not trailing

sql/core/src/main/scala/org/apache/spark/sql/DataFrameWriter.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ final class DataFrameWriter private[sql](df: DataFrame) {
614614
* an already quoted value.</li>
615615
* <li>`header` (default `false`): writes the names of columns as the first line.</li>
616616
* <li>`nullValue` (default empty string): sets the string representation of a null value.</li>
617-
* <li>compression` (default `null`): compression codec to use when saving to file. This can be
617+
* <li>`compression` (default `null`): compression codec to use when saving to file. This can be
618618
* one of the known case-insensitive shorten names (`none`, `bzip2`, `gzip`, `lz4`,
619619
* `snappy` and `deflate`). </li>
620620
*

0 commit comments

Comments
 (0)