Merge pull request #355 from go-vgo/bitmap-pr

Fixed Linux TypeStr() function input double quote
This commit is contained in:
vz 2021-08-21 11:06:11 -04:00 committed by GitHub
commit 0e61a637be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -742,6 +742,9 @@ func ToUC(text string) []string {
if st == "\\\\" {
st = "\\"
}
if st == `\"` {
st = `"`
}
uc = append(uc, st)
}