summaryrefslogtreecommitdiffhomepage
path: root/Cost.hs
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-08-16 23:56:18 -0400
committerJoey Hess <joeyh@joeyh.name>2016-08-16 23:59:43 -0400
commita133e18d25ebd2307037a982ee29cbdd58b3124e (patch)
treeebaf6ec7c7ffc8183f25929ae9f87573bd665db1 /Cost.hs
parentac074d3b596a93afefdcf114ba5ae52fadf8eef8 (diff)
downloadkeysafe-a133e18d25ebd2307037a982ee29cbdd58b3124e.tar.gz
improve layout
Diffstat (limited to 'Cost.hs')
-rw-r--r--Cost.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cost.hs b/Cost.hs
index 968cd31..88d1d61 100644
--- a/Cost.hs
+++ b/Cost.hs
@@ -108,7 +108,7 @@ costOverTimeTable cost thisyear = go [] thisyear $ costOverTime cost thisyear
where
go t _ [] = reverse t
go t yprev ((c, y):ys) =
- let s = " " ++ show y ++ ":\t" ++ show c
+ let s = " in " ++ show y ++ ": " ++ show c
in if yprev < y - 1
then go (s:" ...":t) y ys
else go (s:t) y ys