Skip to content
Snippets Groups Projects
Commit 4d506dbd authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Follow the removal of the Show superclass of Num

parent e91eaaa7
No related branches found
No related tags found
No related merge requests found
......@@ -406,7 +406,7 @@ showTotalSummary modSummary =
showSummary (expTicked modSummary) (expTotal modSummary) ++
"</tr>\n"
showSummary :: (Integral t) => t -> t -> String
showSummary :: (Integral t, Show t) => t -> t -> String
showSummary ticked total =
"<td align=\"right\">" ++ showP (percent ticked total) ++ "</td>" ++
"<td>" ++ show ticked ++ "/" ++ show total ++ "</td>" ++
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment