We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2cc273 commit a91f6d5Copy full SHA for a91f6d5
src/main/scala/centaur/Native2Ascii.scala
@@ -11,7 +11,7 @@ object Native2Ascii extends App {
11
12
def ascii2native(ascii: CharSequence): CharSequence = {
13
// '\\\\' is not unescaped by Scala since we use multiline string """"""
14
- // and is will be unescaped by regex, to a normal string '\\'
+ // and will be unescaped by regex, to a normal string '\\'
15
ascii.toString.split( """\\\\""").map { s =>
16
val Array(head, tail@_*) = s.split( """\\u""")
17
head + tail.flatMap {
0 commit comments