Skip to content

Commit

Permalink
add missing semicolon in tokenizephp.js
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Aug 5, 2010
1 parent e75b90c commit df52c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/php/js/tokenizephp.js
Expand Up @@ -960,7 +960,7 @@ var tokenizePHP = (function() {
}
var ch = source.next();
if (ch == "'" || ch == "\"")
return readMultilineString(ch)
return readMultilineString(ch);
else if (ch == "#")
return readSingleLineComment();
else if (ch == "$")
Expand Down

0 comments on commit df52c54

Please sign in to comment.