8000 fix typo · CJavaScala/native2ascii@a91f6d5 · GitHub
[go: up one dir, main page]

Skip to content

Commit a91f6d5

Browse files
author
Peng.Li
committed
fix typo
1 parent e2cc273 commit a91f6d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/centaur/Native2Ascii.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object Native2Ascii extends App {
1111

1212
def ascii2native(ascii: CharSequence): CharSequence = {
1313
// '\\\\' is not unescaped by Scala since we use multiline string """"""
14-
// and is will be unescaped by regex, to a normal string '\\'
14+
// and will be unescaped by regex, to a normal string '\\'
1515
ascii.toString.split( """\\\\""").map { s =>
1616
val Array(head, tail@_*) = s.split( """\\u""")
1717
head + tail.flatMap {

0 commit comments

Comments
 (0)
0