diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java
index ef11a361..2426d2c7 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -264,6 +264,9 @@ public class CSVFormat implements Serializable {
/**
* Returns a copy of this format using the specified character as the comment start marker.
*
+ * Note that the comment introducer character is only recognised
+ * at the start of a line.
+ *
* @param commentStart the comment start marker
* @return A copy of this format using the specified character as the comment start marker
* @throws IllegalArgumentException thrown if the specified character is a line break
@@ -279,6 +282,9 @@ public class CSVFormat implements Serializable {
/**
* Specifies whether comments are supported by this format.
*
+ * Note that the comment introducer character is only recognised
+ * at the start of a line.
+ *
* @return true is comments are supported, false otherwise
*/
public boolean isCommentingEnabled() {