garydgregory commented on PR #344:
URL: https://github.com/apache/commons-csv/pull/344#issuecomment-1693196265

   What I mean is something like what I just committed:
   ```
       /**
        * Gets the character marking the start of a line comment.
        * <p>
        * The comment format for each line is:
        * </p>
        * <pre>
        * CommentMarker SPACE CommentArrayElement
        * </pre>
        * <p>
        * For example, using a comment marker {@code '#'} and a comment array 
{@code comments ["line 1", "line 2"]}:
        * </p>
        * <pre>
        * # line 1
        * # line 2
        * </pre>
        *
        * @return the comment start marker, may be {@code null}
        */
       public Character getCommentMarker() {
           return commentMarker;
       }
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to