diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java
index 5be0f809..55c77b8f 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -225,7 +225,7 @@ public class CSVFormat implements Serializable {
}
/**
- * Tells if comments are supported by this format.
+ * Specifies whether comments are supported by this format.
*
* @return true is comments are supported, false otherwise
*/
@@ -313,7 +313,8 @@ public class CSVFormat implements Serializable {
}
/**
- * Tells if unicode escape sequences (i.e \u1234) are turned into their corresponding character.
+ * Tells if unicode escape sequences (e.g. \u1234) are turned into their corresponding character
+ * when parsing input.
*
* @return true if unicode escape sequences are interpreted, false if they are left as is.
*/
@@ -333,9 +334,9 @@ public class CSVFormat implements Serializable {
}
/**
- * Tells if the empty lines between the records are ignored.
+ * Specifies whether empty lines between records are ignored when parsing input.
*
- * @return true if empty lines between records are ignore, false if they are turned into empty records.
+ * @return true if empty lines between records are ignored, false if they are turned into empty records.
*/
public boolean isEmptyLinesIgnored() {
return emptyLinesIgnored;