style: [skip ci] updated comment

This commit is contained in:
Sven SAULEAU 2017-05-30 18:38:50 +02:00
parent 51bd87baa8
commit 26096d6a3d
No known key found for this signature in database
GPG Key ID: 7C3212582FBA1BA2

View File

@ -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);
}