We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9668d46 commit e785c00Copy full SHA for e785c00
1 file changed
src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -1524,6 +1524,19 @@ public boolean getAutoFlush() {
1524
1525
/**
1526
* Gets the character marking the start of a line comment.
1527
+ * <p>
1528
+ * The comment format for each line is:
1529
+ * </p>
1530
+ * <pre>
1531
+ * CommentMarker SPACE CommentArrayElement
1532
+ * </pre>
1533
1534
+ * For example, using a comment marker {@code '#'} and a comment array {@code comments ["line 1", "line 2"]}:
1535
1536
1537
+ * # line 1
1538
+ * # line 2
1539
1540
*
1541
* @return the comment start marker, may be {@code null}
1542
*/
0 commit comments