Skip to content

Commit 1559a3c

Browse files
authored
Merge pull request #466 from sigee/fix-javadoc-2
Fix documentation for CSVFormat private constructor
2 parents 3b33668 + 9de89e1 commit 1559a3c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1528,14 +1528,14 @@ private CSVFormat(final Builder builder) {
15281528
* @param ignoreSurroundingSpaces {@code true} when whitespaces enclosing values should be ignored.
15291529
* @param ignoreEmptyLines {@code true} when the parser should skip empty lines.
15301530
* @param recordSeparator the line separator to use for output.
1531-
* @param nullString the line separator to use for output.
1532-
* @param headerComments the comments to be printed by the Printer before the actual CSV data..
1531+
* @param nullString the String to convert to and from {@code null}.
1532+
* @param headerComments the comments to be printed by the Printer before the actual CSV data.
15331533
* @param header the header.
15341534
* @param skipHeaderRecord if {@code true} the header row will be skipped.
15351535
* @param allowMissingColumnNames if {@code true} the missing column names are allowed when parsing the header line.
15361536
* @param ignoreHeaderCase if {@code true} header names will be accessed ignoring case when parsing input.
15371537
* @param trim if {@code true} next record value will be trimmed.
1538-
* @param trailingDelimiter if {@code true} the trailing delimiter wil be added before record separator (if set)..
1538+
* @param trailingDelimiter if {@code true} the trailing delimiter wil be added before record separator (if set).
15391539
* @param autoFlush if {@code true} the underlying stream will be flushed before closing.
15401540
* @param duplicateHeaderMode the behavior when handling duplicate headers.
15411541
* @param trailingData whether reading trailing data is allowed in records, helps Excel compatibility.

0 commit comments

Comments
 (0)