You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/03/25 22:37:47 UTC

svn commit: r1460907 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java

Author: britter
Date: Mon Mar 25 21:37:47 2013
New Revision: 1460907

URL: http://svn.apache.org/r1460907
Log:
Fix typo

Modified:
    commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java

Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java?rev=1460907&r1=1460906&r2=1460907&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java (original)
+++ commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java Mon Mar 25 21:37:47 2013
@@ -324,7 +324,7 @@ public class CSVLexerTest {
         assertTokenEquals(EOF, "character\\aEscaped", lexer.nextToken(new Token()));
     }
 
-    // FIXME this should work after CSV-58 is resolved. Currentyl the result will be "characterCREscaped"
+    // FIXME this should work after CSV-58 is resolved. Currently the result will be "characterCREscaped"
     @Test
     @Ignore
     public void testEscapedControlCharacter() throws Exception {