We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b55e022 commit 4e0b0fbCopy full SHA for 4e0b0fb
1 file changed
src/main/java/org/apache/commons/csv/Token.java
@@ -21,16 +21,17 @@
21
22
/**
23
* Internal token representation.
24
- * <p/>
25
- * It is used as contract between the lexer and the parser.
+ * <p>
+ * It is used as a contract between the lexer and the parser.
26
+ * </p>
27
*/
28
final class Token {
29
30
enum Type {
31
/** Token has no valid content, i.e. is in its initialized state. */
32
INVALID,
33
- /** Token with content, at beginning or in the middle of a line. */
34
+ /** Token with content, at the beginning or in the middle of a line. */
35
TOKEN,
36
37
/** Token (which can have content) when the end of file is reached. */
0 commit comments