You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/10/12 16:26:36 UTC

svn commit: r1397579 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Token.java

Author: ggregory
Date: Fri Oct 12 14:26:35 2012
New Revision: 1397579

URL: http://svn.apache.org/viewvc?rev=1397579&view=rev
Log:
Javadoc.

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Token.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Token.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Token.java?rev=1397579&r1=1397578&r2=1397579&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Token.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Token.java Fri Oct 12 14:26:35 2012
@@ -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.
  * <p/>
  * 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
     }