From 48b26f82f711437fe96899d0a24153476762d22e Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Fri, 12 Oct 2012 14:26:35 +0000 Subject: [PATCH] Javadoc. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397579 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/Token.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/Token.java b/src/main/java/org/apache/commons/csv/Token.java index de3f2a9e..696d760c 100644 --- a/src/main/java/org/apache/commons/csv/Token.java +++ b/src/main/java/org/apache/commons/csv/Token.java @@ -20,7 +20,7 @@ package org.apache.commons.csv; import static org.apache.commons.csv.Token.Type.INVALID; /** - * Token is an internal token representation. + * Internal token representation. *

* It is used as contract between the lexer and the parser. */ @@ -36,13 +36,13 @@ class Token { /** Token with content, at beginning or in the middle of a line. */ TOKEN, - /** Token (which can have content) when end of file is reached. */ + /** Token (which can have content) when the end of file is reached. */ EOF, - /** Token with content when end of a line is reached. */ + /** Token with content when the end of a line is reached. */ EORECORD, - /** Token is a comment line */ + /** Token is a comment line. */ COMMENT }