From b2991bf6eec4ae7706f3dd33941af909f36f1773 Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Wed, 13 Apr 2016 15:16:32 +0200 Subject: Fixing printing of pat%constr. --- printing/miscprint.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/printing/miscprint.ml b/printing/miscprint.ml index 5e86c6bd76..7b2c5695fd 100644 --- a/printing/miscprint.ml +++ b/printing/miscprint.ml @@ -28,7 +28,7 @@ and pr_intro_pattern_action prc = function | IntroInjection pl -> str "[=" ++ hv 0 (prlist_with_sep spc (pr_intro_pattern prc) pl) ++ str "]" - | IntroApplyOn (c,pat) -> pr_intro_pattern prc pat ++ str "/" ++ prc c + | IntroApplyOn (c,pat) -> pr_intro_pattern prc pat ++ str "%" ++ prc c | IntroRewrite true -> str "->" | IntroRewrite false -> str "<-" -- cgit v1.2.3