aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/elab_print.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/elab_print.sml')
-rw-r--r--src/elab_print.sml22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/elab_print.sml b/src/elab_print.sml
index 1da98c7a..81cbae69 100644
--- a/src/elab_print.sml
+++ b/src/elab_print.sml
@@ -125,17 +125,17 @@ fun p_con' par env (c, _) =
| CApp (c1, c2) => parenIf par (box [p_con env c1,
space,
p_con' true env c2])
- | CAbs (x, k, c) => parenIf par (box [string "fn",
- space,
- string x,
- space,
- string "::",
- space,
- p_kind k,
- space,
- string "=>",
- space,
- p_con (E.pushCRel env x k) c])
+ | CAbs (x, k, c) => parenIf true (box [string "fn",
+ space,
+ string x,
+ space,
+ string "::",
+ space,
+ p_kind k,
+ space,
+ string "=>",
+ space,
+ p_con (E.pushCRel env x k) c])
| CDisjoint (c1, c2, c3) => parenIf par (box [p_con env c1,
space,
string "~",