Skip to content

Commit 48b26f8

Browse files
committed
Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397579 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9428b9c commit 48b26f8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/csv/Token.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import 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

0 commit comments

Comments
 (0)