diff options
author | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-08-19 07:38:25 +0200 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-08-19 07:38:25 +0200 |
commit | 283579ff70d324296e2b7ee2535b1187ca32e0cb (patch) | |
tree | 28c6f795c63afe638dd70dbac2837164548a45d3 | |
parent | 262ad3c3ce24463094110aa011471213ac0b61c7 (diff) |
Remove extraneous dot in error message (bug #4832).
-rw-r--r-- | tactics/equality.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/equality.ml b/tactics/equality.ml index 819a995db..06a9b317a 100644 --- a/tactics/equality.ml +++ b/tactics/equality.ml @@ -610,7 +610,7 @@ let replace_using_leibniz clause c1 c2 l2r unsafe try_prove_eq_opt = in match evd with | None -> - tclFAIL 0 (str"Terms do not have convertible types.") + tclFAIL 0 (str"Terms do not have convertible types") | Some evd -> let e = build_coq_eq () in let sym = build_coq_eq_sym () in |