More clean up, update readme
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / CQLLexer.java
index 2c867ea..83bbe5b 100644 (file)
@@ -136,7 +136,7 @@ public class CQLLexer implements CQLTokenizer {
       case TT_EOF:
         return "EOF";
       case TT_WORD:
-        return "word: " + val;
+        return "word: '" + val + "'";
       case '"':
         return "string: \"" + val + "\"";
       case TT_LE: