From 26096d6a3d5526383869e47294a3e42f9c2d2d68 Mon Sep 17 00:00:00 2001 From: Sven SAULEAU Date: Tue, 30 May 2017 18:38:50 +0200 Subject: [PATCH] style: [skip ci] updated comment --- src/tokenizer/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokenizer/index.js b/src/tokenizer/index.js index bb7c414922..acc145de03 100644 --- a/src/tokenizer/index.js +++ b/src/tokenizer/index.js @@ -422,7 +422,7 @@ export default class Tokenizer extends LocationParser { readToken_question() { // '?' const next = this.input.charCodeAt(this.state.pos + 1); - if (next === 46) { // 46 = question '.' + if (next === 46) { // '.' this.state.pos += 2; return this.finishToken(tt.questionDot); }