summaryrefslogtreecommitdiff
path: root/tactics/eqdecide.ml4
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/eqdecide.ml4')
-rw-r--r--tactics/eqdecide.ml46
1 files changed, 3 insertions, 3 deletions
diff --git a/tactics/eqdecide.ml4 b/tactics/eqdecide.ml4
index 8e0b2ca3..41f85fa3 100644
--- a/tactics/eqdecide.ml4
+++ b/tactics/eqdecide.ml4
@@ -14,7 +14,7 @@
(*i camlp4deps: "parsing/grammar.cma" i*)
-(* $Id: eqdecide.ml4 11166 2008-06-22 13:23:35Z herbelin $ *)
+(* $Id: eqdecide.ml4 11309 2008-08-06 10:30:35Z herbelin $ *)
open Util
open Names
@@ -152,14 +152,14 @@ let decideGralEquality g =
let rectype =
match kind_of_term headtyp with
| Ind mi -> mi
- | _ -> error "This decision procedure only works for inductive objects"
+ | _ -> error"This decision procedure only works for inductive objects."
in
(tclTHEN
(mkBranches c1 c2)
(tclORELSE (h_solveNoteqBranch eqonleft) (solveEqBranch rectype)))
g
with PatternMatchingFailure ->
- error "The goal must be of the form {x<>y}+{x=y} or {x=y}+{x<>y}"
+ error "The goal must be of the form {x<>y}+{x=y} or {x=y}+{x<>y}."
let decideEqualityGoal = tclTHEN intros decideGralEquality