Tree: Fix the pipe symbol to match the other UTF-8 symbols used

The "branching" symbols used to print the tree are UTF-8 characters.
Make the pipe symbol be the matching UTF-8 character to close the tiny gap
between symbols visible in the tree before.
This commit is contained in:
Sebastian Schuberth 2017-06-09 15:29:10 +02:00
parent f6493a2d5a
commit 0701df35a4
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ object Tree {
def showLine(isLast: Seq[Boolean]): String = {
val initPrefix = init(isLast) {
case true => " "
case false => "| "
case false => " "
}.mkString
val lastPrefix = last(isLast) {