From 0701df35a44998d4b2d1863ccea5a07339b89b15 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Fri, 9 Jun 2017 15:29:10 +0200 Subject: [PATCH] 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. --- core/shared/src/main/scala/coursier/util/Tree.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/shared/src/main/scala/coursier/util/Tree.scala b/core/shared/src/main/scala/coursier/util/Tree.scala index 2e1cfe553..5a12edb34 100644 --- a/core/shared/src/main/scala/coursier/util/Tree.scala +++ b/core/shared/src/main/scala/coursier/util/Tree.scala @@ -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) {