This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push:
new 4e0b0fb8 Javadoc
4e0b0fb8 is described below
commit 4e0b0fb8a501cccad9531249bcc8b0aafce7bb3a
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Aug 30 09:08:38 2023 -0400
Javadoc
---
src/main/java/org/apache/commons/csv/Token.java | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/csv/Token.java
b/src/main/java/org/apache/commons/csv/Token.java
index 2dedc58a..a33b220e 100644
--- a/src/main/java/org/apache/commons/csv/Token.java
+++ b/src/main/java/org/apache/commons/csv/Token.java
@@ -21,8 +21,9 @@ import static org.apache.commons.csv.Token.Type.INVALID;
/**
* Internal token representation.
- * <p/>
- * It is used as contract between the lexer and the parser.
+ * <p>
+ * It is used as a contract between the lexer and the parser.
+ * </p>
*/
final class Token {
@@ -30,7 +31,7 @@ final class Token {
/** Token has no valid content, i.e. is in its initialized state. */
INVALID,
- /** Token with content, at beginning or in the middle of a line. */
+ /** Token with content, at the beginning or in the middle of a line. */
TOKEN,
/** Token (which can have content) when the end of file is reached. */