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 2020import static org .apache .commons .csv .Token .Type .INVALID ;
2121
2222/**
23- * Token is an internal token representation.
23+ * Internal token representation.
2424 * <p/>
2525 * It is used as contract between the lexer and the parser.
2626 */
@@ -36,13 +36,13 @@ enum Type {
3636 /** Token with content, at beginning or in the middle of a line. */
3737 TOKEN ,
3838
39- /** Token (which can have content) when end of file is reached. */
39+ /** Token (which can have content) when the end of file is reached. */
4040 EOF ,
4141
42- /** Token with content when end of a line is reached. */
42+ /** Token with content when the end of a line is reached. */
4343 EORECORD ,
4444
45- /** Token is a comment line */
45+ /** Token is a comment line. */
4646 COMMENT
4747 }
4848
You can’t perform that action at this time.
0 commit comments