JSDOC/TokenReader.vala
authorAlan Knowles <alan@roojs.com>
Fri, 2 Oct 2015 09:07:49 +0000 (17:07 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 2 Oct 2015 09:07:49 +0000 (17:07 +0800)
JSDOC/TokenReader.vala

index 819d150..03a6065 100644 (file)
@@ -474,7 +474,7 @@ namespace JSDOC {
          */
         public bool read_numb  (TextStream stream, TokenArray tokens)
         {
-            if (stream.look() == "0" && stream.look(1) == "x") {
+            if (stream.look() == '0' && stream.look(1) == 'x') {
                 return this.read_hex(stream, tokens);
             }