aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parsing/prettyp.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/prettyp.ml b/parsing/prettyp.ml
index 50347df033..a358301e5b 100644
--- a/parsing/prettyp.ml
+++ b/parsing/prettyp.ml
@@ -630,7 +630,7 @@ let print_path_between cls clt =
let print_canonical_structures () =
prlist_with_sep pr_fnl (fun ((r1,r2),o) ->
- prterm o.o_DEF ++ str ": " ++ pr_global r1 ++ str " >-> " ++ pr_global r2)
+ pr_global r2 ++ str " <- " ++ pr_global r1 ++ str " ( " ++ prterm o.o_DEF ++ str " )")
(canonical_structures ())
(*************************************************************************)