Remove stray single quotes in symbol name strings
This commit is contained in:
parent
6f242fda0c
commit
545e840a08
1 changed files with 3 additions and 3 deletions
|
|
@ -934,9 +934,9 @@ impl Generator {
|
|||
match c {
|
||||
'\"' => result += "\\\"",
|
||||
'\\' => result += "\\\\",
|
||||
'\t' => result += "'\\t'",
|
||||
'\n' => result += "'\\n'",
|
||||
'\r' => result += "'\\r'",
|
||||
'\t' => result += "\\t",
|
||||
'\n' => result += "\\n",
|
||||
'\r' => result += "\\r",
|
||||
_ => result.push(c),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue