aboutsummaryrefslogtreecommitdiff
path: root/theories/Bool
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Bool')
-rw-r--r--theories/Bool/BoolEq.v4
-rw-r--r--theories/Bool/IfProp.v4
2 files changed, 4 insertions, 4 deletions
diff --git a/theories/Bool/BoolEq.v b/theories/Bool/BoolEq.v
index 106a79e8c9..59a1b8da43 100644
--- a/theories/Bool/BoolEq.v
+++ b/theories/Bool/BoolEq.v
@@ -67,8 +67,8 @@ Section Bool_eq_dec.
Proof.
intros x y; case (exists_beq_eq x y).
intros b; case b; intro H.
- left; apply beq_eq; assumption.
- right; apply beq_false_not_eq; assumption.
+ - left; apply beq_eq; assumption.
+ - right; apply beq_false_not_eq; assumption.
Defined.
End Bool_eq_dec.
diff --git a/theories/Bool/IfProp.v b/theories/Bool/IfProp.v
index 6f99ea1da7..32ed7fe78d 100644
--- a/theories/Bool/IfProp.v
+++ b/theories/Bool/IfProp.v
@@ -45,6 +45,6 @@ Qed.
Lemma IfProp_sum : forall (A B:Prop) (b:bool), IfProp A B b -> {A} + {B}.
destruct b; intro H.
-left; inversion H; auto with bool.
-right; inversion H; auto with bool.
+- left; inversion H; auto with bool.
+- right; inversion H; auto with bool.
Qed.