Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit 4e0b0fb

Browse files
authored
Javadoc
1 parent b55e022 commit 4e0b0fb

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@
2121

2222
/**
2323
* Internal token representation.
24-
* <p/>
25-
* It is used as contract between the lexer and the parser.
24+
* <p>
25+
* It is used as a contract between the lexer and the parser.
26+
* </p>
2627
*/
2728
final class Token {
2829

2930
enum Type {
3031
/** Token has no valid content, i.e. is in its initialized state. */
3132
INVALID,
3233

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. */
3435
TOKEN,
3536

3637
/** Token (which can have content) when the end of file is reached. */

0 commit comments

Comments
 (0)