token: remove // from comment kind string (#7992)

pull/8008/head
Lukas Neubert 2021-01-10 11:19:59 +01:00 committed by GitHub
parent 31753f581f
commit 73bd63d69d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ fn build_token_str() []string {
s[Kind.question] = '?'
s[Kind.left_shift] = '<<'
s[Kind.right_shift] = '>>'
s[Kind.comment] = '// comment'
s[Kind.comment] = 'comment'
s[Kind.nl] = 'NLL'
s[Kind.dollar] = '$'
s[Kind.at] = '@'