Skip to content

Commit 0ea3603

Browse files
committed
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1300699 13f79535-47bb-0310-9956-ffa450edef68
1 parent bbb2da1 commit 0ea3603

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ public CSVFormat withCommentStart(char commentStart) {
225225
}
226226

227227
/**
228-
* Tells if comments are supported by this format.
228+
* Specifies whether comments are supported by this format.
229229
*
230230
* @return <tt>true</tt> is comments are supported, <tt>false</tt> otherwise
231231
*/
@@ -313,7 +313,8 @@ public CSVFormat withSurroundingSpacesIgnored(boolean surroundingSpacesIgnored)
313313
}
314314

315315
/**
316-
* Tells if unicode escape sequences (i.e <span>\</span>u1234) are turned into their corresponding character.
316+
* Tells if unicode escape sequences (e.g. <span>\</span>u1234) are turned into their corresponding character
317+
* when parsing input.
317318
*
318319
* @return <tt>true</tt> if unicode escape sequences are interpreted, <tt>false</tt> if they are left as is.
319320
*/
@@ -333,9 +334,9 @@ public CSVFormat withUnicodeEscapesInterpreted(boolean unicodeEscapesInterpreted
333334
}
334335

335336
/**
336-
* Tells if the empty lines between the records are ignored.
337+
* Specifies whether empty lines between records are ignored when parsing input.
337338
*
338-
* @return <tt>true</tt> if empty lines between records are ignore, <tt>false</tt> if they are turned into empty records.
339+
* @return <tt>true</tt> if empty lines between records are ignored, <tt>false</tt> if they are turned into empty records.
339340
*/
340341
public boolean isEmptyLinesIgnored() {
341342
return emptyLinesIgnored;

0 commit comments

Comments
 (0)