Skip to content

Commit

Permalink
Merge remote-tracking branch 'martinlindhe/simplify-case'
Browse files Browse the repository at this point in the history
  • Loading branch information
cespare committed Jul 12, 2016
2 parents 62745b7 + d72a51e commit bec2dac
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lex.go
Original file line number Diff line number Diff line change
Expand Up @@ -827,13 +827,7 @@ func (itype itemType) String() string {
return "EOF"
case itemText:
return "Text"
case itemString:
return "String"
case itemRawString:
return "String"
case itemMultilineString:
return "String"
case itemRawMultilineString:
case itemString, itemRawString, itemMultilineString, itemRawMultilineString:
return "String"
case itemBool:
return "Bool"
Expand Down

0 comments on commit bec2dac

Please sign in to comment.