aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--kernel/names.ml2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 5c1ef12a91..b432e0ccdf 100644
--- a/CHANGES
+++ b/CHANGES
@@ -84,6 +84,8 @@ Tactic definitions
Tactics
+- Equality tactics (Rewrite, Reflexivity, Symmetry, Transitivity) now
+ understand JM equality
- Simpl and Change now apply to subterms also
- Double Induction now referring to hypotheses like "Intros until"
- "Inversion" now applies also on quantified hypotheses (naming as
diff --git a/kernel/names.ml b/kernel/names.ml
index dc665408c9..ddc592c094 100644
--- a/kernel/names.ml
+++ b/kernel/names.ml
@@ -113,7 +113,7 @@ let rec string_of_mp = function
| MPself uid -> string_of_uid uid
| MPdot (mp,l) -> string_of_mp mp ^ "." ^ string_of_label l
-(* we compare labels first if two MPdot's *)
+(* we compare labels first if both are MPdots *)
let rec mp_ord mp1 mp2 = match (mp1,mp2) with
MPdot(mp1,l1), MPdot(mp2,l2) ->
let c = Pervasives.compare l1 l2 in