File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments