author | wenzelm |
Sat, 27 Jan 2018 20:35:34 +0100 | |
changeset 67519 | 6905b156a030 |
parent 67518 | 30ecd3958bc3 |
child 67520 | 6ff47e27c32d |
--- a/src/Pure/Syntax/ast.ML Sat Jan 27 20:26:42 2018 +0100 +++ b/src/Pure/Syntax/ast.ML Sat Jan 27 20:35:34 2018 +0100 @@ -64,7 +64,7 @@ | pretty_ast (Appl asts) = Pretty.enclose "(" ")" (Pretty.breaks (map pretty_ast asts)); fun pretty_rule (lhs, rhs) = - Pretty.block [pretty_ast lhs, Pretty.str " ->", Pretty.brk 2, pretty_ast rhs]; + Pretty.block [pretty_ast lhs, Pretty.str " \<leadsto>", Pretty.brk 1, pretty_ast rhs]; val _ = ML_system_pp (fn _ => fn _ => Pretty.to_polyml o pretty_ast);