Replace appendln with appendLine in project

This commit is contained in:
Alexander Udalov
2020-06-09 21:09:45 +02:00
parent d1c88798df
commit 6e67e1e78d
76 changed files with 405 additions and 402 deletions
@@ -82,7 +82,7 @@ fun String.underlineAsText(from: Int, to: Int): String {
if (isEndOfLine(c.toInt())) {
if (lineWasMarked) {
lines.appendln(marks.toString().trimEnd())
lines.appendLine(marks.toString().trimEnd())
lineWasMarked = false
}
@@ -91,7 +91,7 @@ fun String.underlineAsText(from: Int, to: Int): String {
}
if (lineWasMarked) {
lines.appendln()
lines.appendLine()
lines.append(marks.toString())
}