aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/himsg.ml
diff options
context:
space:
mode:
Diffstat (limited to 'toplevel/himsg.ml')
-rw-r--r--toplevel/himsg.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/toplevel/himsg.ml b/toplevel/himsg.ml
index 34cb1a13b..9ce8aad99 100644
--- a/toplevel/himsg.ml
+++ b/toplevel/himsg.ml
@@ -478,11 +478,11 @@ let explain_bad_pattern ctx cstr ty =
let explain_bad_constructor ctx cstr ind =
let pi = pr_inductive ctx ind in
- let pc = pr_constructor ctx cstr in
+(* let pc = pr_constructor ctx cstr in*)
let pt = pr_inductive ctx (inductive_of_constructor cstr) in
- [< 'sTR "Expecting a constructor in inductive type "; pi; 'bRK(1,1) ;
- 'sTR " but found the constructor " ; pc; 'bRK(1,1) ;
- 'sTR " in inductive type "; pt >]
+ [< 'sTR "Found a constructor of inductive type "; pt; 'bRK(1,1) ;
+ 'sTR "while a constructor of " ; pi; 'bRK(1,1) ;
+ 'sTR "is expected" >]
let explain_wrong_numarg_of_constructor ctx cstr n =
let pc = pr_constructor ctx (cstr,[||]) in