Skip to content
Snippets Groups Projects
Commit f6b00c00 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-02-03 11:39:00 by simonm]

missing '('.
parent d6891236
No related merge requests found
......@@ -791,7 +791,7 @@ intToDigit :: Int -> Char
intToDigit i
| i >= 0 && i <= 9 = toEnum (fromEnum '0' + i)
| i >= 10 && i <= 15 = toEnum (fromEnum 'a' + i -10)
| otherwise = error "Char.intToDigit: not a digit" ++ show i)
| otherwise = error ("Char.intToDigit: not a digit" ++ show i)
\end{code}
......
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