Default to 3 decimals
This commit is contained in:
parent
84b189f722
commit
7801371534
|
@ -63,7 +63,7 @@ formatDependencyTrees = T.concat . (formatDependencyTrees' "")
|
|||
|
||||
formatUToken = \case
|
||||
UToken i ->
|
||||
[ T.pack (printf "%02d" i) ]
|
||||
[ T.pack (printf "%03d" i) ]
|
||||
UTupleToken (a, b) ->
|
||||
concat [ [ "tup(" ]
|
||||
, formatUToken a
|
||||
|
|
Loading…
Reference in New Issue