summaryrefslogtreecommitdiff
path: root/theories/Bool/IfProp.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Bool/IfProp.v')
-rw-r--r--theories/Bool/IfProp.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Bool/IfProp.v b/theories/Bool/IfProp.v
index 11f3d1d6..4257b4bc 100644
--- a/theories/Bool/IfProp.v
+++ b/theories/Bool/IfProp.v
@@ -12,7 +12,7 @@ Inductive IfProp (A B:Prop) : bool -> Prop :=
| Iftrue : A -> IfProp A B true
| Iffalse : B -> IfProp A B false.
-Hint Resolve Iftrue Iffalse: bool v62.
+Hint Resolve Iftrue Iffalse: bool.
Lemma Iftrue_inv : forall (A B:Prop) (b:bool), IfProp A B b -> b = true -> A.
destruct 1; intros; auto with bool.