From 26ba41d08f86fc006edf9c0552205e2851a1060b Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Thu, 10 Aug 2023 10:44:06 -0400 Subject: Fix rendering issues + add git comp --- source/comp/hr.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/comp/hr.d') diff --git a/source/comp/hr.d b/source/comp/hr.d index fa4d32b..76f7098 100644 --- a/source/comp/hr.d +++ b/source/comp/hr.d @@ -4,7 +4,7 @@ string hr(int col) { string ps; foreach (i; 0 .. col) { - ps ~= '—'; + ps ~= '─'; } return ps; -- cgit v1.2.3