fix symbol convertion

This commit is contained in:
c9s 2020-10-10 17:55:05 +08:00
parent 7f6a478d4f
commit 26831f9be5

View File

@ -192,7 +192,7 @@ func toLocalSymbol(symbol string) string {
}
func toGlobalSymbol(symbol string) string {
return strings.ToLower(symbol)
return strings.ToUpper(symbol)
}
func toLocalSideType(side types.SideType) string {