token: change 'STR' kind to 'string'

pull/4774/head
yuyi 2020-05-07 22:26:22 +08:00 committed by GitHub
parent ab30e81ab5
commit d096763f62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ fn build_token_str() []string {
s[Kind.eof] = 'eof'
s[Kind.name] = 'name'
s[Kind.number] = 'number'
s[Kind.string] = 'STR'
s[Kind.string] = 'string'
s[Kind.chartoken] = 'char'
s[Kind.plus] = '+'
s[Kind.minus] = '-'