1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 09:38:06 +02:00

Fix errors reported by the space-infix-ops ESLint rule

http://eslint.org/docs/rules/space-infix-ops
This commit is contained in:
Jonas Jenwald 2016-12-11 10:43:09 +01:00
parent 68bf47d55d
commit 28e50cfa21
6 changed files with 8 additions and 8 deletions

View file

@ -895,7 +895,7 @@ var Lexer = (function LexerClosure() {
var x2 = toHexDigit(ch);
if (x2 === -1) {
warn('Lexer_getName: Illegal digit (' +
String.fromCharCode(ch) +') in hexadecimal number.');
String.fromCharCode(ch) + ') in hexadecimal number.');
strBuf.push('#', String.fromCharCode(previousCh));
if (specialChars[ch]) {
break;