aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/expl_print.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/expl_print.sml')
-rw-r--r--src/expl_print.sml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expl_print.sml b/src/expl_print.sml
index ab8462b8..447845a2 100644
--- a/src/expl_print.sml
+++ b/src/expl_print.sml
@@ -48,6 +48,7 @@ fun p_kind' par (k, _) =
p_kind k2])
| KName => string "Name"
| KRecord k => box [string "{", p_kind k, string "}"]
+ | KUnit => string "Unit"
and p_kind k = p_kind' false k
@@ -144,6 +145,7 @@ fun p_con' par env (c, _) =
space,
p_con env c2])
| CFold _ => string "fold"
+ | CUnit => string "()"
and p_con env = p_con' false env